Recenze doplňku Tampermonkey
Tampermonkey od Jan Biniok
Recenze od uživatele DannSKiller
Hodnocení: 5 z 5
od uživatele DannSKiller, před 2 letyAfter getting annoyed with searches I didn't want showing up on my Google page, especially for video searches, my web browser redirected me to TikTok. That platform is totally useless and shouldn't even be linked with Google. I'm sharing the script below that will help you block sites as well."
// ==UserScript==
// @name Google Search Filter
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Filter out specified sites from Google search results
// @author Your Name
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const blockedSites = ['example.com', 'anotherexample.com']; // Add the sites you want to block here
const observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
if (mutation.addedNodes && mutation.addedNodes.length > 0) {
blockedSites.forEach(site => {
const results = document.querySelectorAll(`a[href*="${site}"]`);
results.forEach(result => {
const parent = result.closest('.g'); // Google results container
if (parent) {
parent.style.display = 'none';
}
});
});
}
});
});
observer.observe(document.body, { childList: true, subtree: true });
// Initial execution for already loaded content
blockedSites.forEach(site => {
const results = document.querySelectorAll(`a[href*="${site}"]`);
results.forEach(result => {
const parent = result.closest('.g'); // Google results container
if (parent) {
parent.style.display = 'none';
}
});
});
})();
// ==UserScript==
// @name Google Search Filter
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Filter out specified sites from Google search results
// @author Your Name
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const blockedSites = ['example.com', 'anotherexample.com']; // Add the sites you want to block here
const observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
if (mutation.addedNodes && mutation.addedNodes.length > 0) {
blockedSites.forEach(site => {
const results = document.querySelectorAll(`a[href*="${site}"]`);
results.forEach(result => {
const parent = result.closest('.g'); // Google results container
if (parent) {
parent.style.display = 'none';
}
});
});
}
});
});
observer.observe(document.body, { childList: true, subtree: true });
// Initial execution for already loaded content
blockedSites.forEach(site => {
const results = document.querySelectorAll(`a[href*="${site}"]`);
results.forEach(result => {
const parent = result.closest('.g'); // Google results container
if (parent) {
parent.style.display = 'none';
}
});
});
})();
5 257 recenzí
- Hodnocení: 1 z 5od uživatele Uživatel Firefoxu - 17501884, před 4 dny数ヶ月前の更新の際、これまで作ってきたユーザースクリプトのデータが全て消滅しました。
あらゆるデータベースファイル、削除されたデータ等を探しても残っておらず、途方もない損失に嘆きましたが、少しずつ復旧させてきました。
そして今日、Firefoxを再起動した際、再び何かのトラブルで全てのユーザースクリプトが消滅しました。
もうこれ以上信頼を預けることはできません。ViolentMonkey等への移行を速やかに行います。 - Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 12859804, před 5 dny
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 19828004, před 10 dny
- Hodnocení: 5 z 5od uživatele Rackmani, před 13 dnyGreat to allow me to add a script to stop a copy paste block on a certain website where other extns were failing
- Hodnocení: 1 z 5od uživatele Uživatel Firefoxu - 14987899, před 13 dnyApparently it is not only a mess, it's also bloated, closed source now, and has fucking Google Analytics.
- Hodnocení: 5 z 5od uživatele Alex, před 19 dny
- Hodnocení: 5 z 5od uživatele Pabli, před 20 dny
- Hodnocení: 1 z 5od uživatele Uživatel Firefoxu - 17710969, před 21 dny
- Hodnocení: 5 z 5od uživatele frank, před 22 dny
- Hodnocení: 5 z 5od uživatele tink., před měsícem
- Hodnocení: 5 z 5od uživatele Adigitalnomad123, před měsícem
- Hodnocení: 5 z 5od uživatele Yanyi, před měsícemvery good for scripts better than violent monkey on edge
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 18759100, před 2 měsíci
- Hodnocení: 5 z 5od uživatele Julian, před 2 měsíci
- Hodnocení: 1 z 5od uživatele RenzoBenzo, před 2 měsíciClosed source, bloated, uses google analytics, and did I mention it's closed source and uses google analytics. I would suggest users not use this extension, and use FireMonkey or ViolentMonkey instead.
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 19743679, před 2 měsíci
- Hodnocení: 5 z 5od uživatele DrBeaker, před 2 měsíci
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 10447271, před 2 měsíci
- Hodnocení: 5 z 5od uživatele Desire, před 2 měsíci
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 19729411, před 2 měsíci
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 19709889, před 3 měsíciReally efficient. This is my new obsession.
- Hodnocení: 5 z 5od uživatele Breno, před 3 měsíci
- Hodnocení: 1 z 5od uživatele nutzboi, před 3 měsícits updated and deleted all my installed userscripts 😩