Recenze doplňku Tampermonkey
Tampermonkey od Jan Biniok
Recenze od uživatele DannSKiller
Hodnocení: 5 z 5
od uživatele DannSKiller, před rokemAfter 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 197 recenzí
- Hodnocení: 5 z 5od uživatele Sailor Moonie, před hodinou
- Hodnocení: 5 z 5od uživatele Clemens Anhuth, před 11 hodinamiSimply mandatory to help make web apps used for the job bearable.
Unfortunately not open source and complex, which may mean that enterprise users may not have permission to use it as enterprise IT departments are tightening their security policies.
And unfortunately, there is another extension of almost identical name ("Tamper monkey" which even uses Tampermonkey's icon/logo), which may trick people into installing the wrong extension. While I have reported this, I think the author of this extension should have more luck to get Mozilla to ban that other "fake" extension. - Hodnocení: 1 z 5od uživatele user, před 4 dnyUse “Greasemonkey” or “Violentmonkey”, both open‑source, whereas “Tampermonkey” is closed‑source.
- Hodnocení: 5 z 5od uživatele Nippy, před 6 dny
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 17915631, před 7 dny
- Hodnocení: 5 z 5od uživatele nihi1ist, před 9 dny
- Hodnocení: 5 z 5od uživatele Yukari, před 11 dny
- Hodnocení: 5 z 5od uživatele ShaneV, před 19 dny
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 19491455, před 20 dny
- Hodnocení: 4 z 5od uživatele Uživatel Firefoxu - 18925489, před 21 dnyThe editor is extremely laggy on Android.
- Hodnocení: 5 z 5od uživatele CatEatFish, před 25 dny
- Hodnocení: 5 z 5od uživatele andOlga, před měsícem
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 18962703, před měsícem
- Hodnocení: 5 z 5od uživatele entrflxy, před měsícem
- Hodnocení: 3 z 5od uživatele Cronodoug, před měsícemIt would be wonderful if you could backup your scripts before a creator updates them andTampermonkey updates them WITHOUT AUTHORIZATION! I can't get the first version of a script anymore, because the creators of this extension must think that everything that is updated is better!
Odpověď vývojáře
zveřejněno před měsícemYou can disable userscript updates either for individual scripts or globally. - Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 18921992, před měsícem
- Hodnocení: 1 z 5od uživatele NanderTGA, před 2 měsíciWell-designed addon, but I find that it's a shame for it to have gone closed-source 10 years ago. No thanks, I'll switch to ViolentMonkey, which I can read the code of and modify as I please.
- Hodnocení: 5 z 5od uživatele PageExplorer, před 2 měsíci
- Hodnocení: 1 z 5od uživatele ikkgd, před 2 měsíci
- Hodnocení: 5 z 5od uživatele NiGoDa, před 2 měsíci
- Hodnocení: 5 z 5od uživatele Ahmed, před 2 měsíci
- Hodnocení: 5 z 5od uživatele hugo, před 2 měsíci