Reviews for Tampermonkey
Tampermonkey by Jan Biniok
4,499 reviews
- Rated 5 out of 5by Firefox user 14620710, a year ago
- Rated 5 out of 5by 大shax, a year ago
- Rated 5 out of 5by lmtcx, a year ago
- Rated 5 out of 5by ken, a year ago
- Rated 5 out of 5by Firefox user 18494342, a year ago
- Rated 5 out of 5by Firefox user 13963776, a year ago
- Rated 5 out of 5by Firefox user 15294176, a year ago
- Rated 5 out of 5by ZhangMouRen, a year ago
- Rated 5 out of 5by Firefox user 18521872, a year ago
- Rated 5 out of 5by Firefox user 18513844, a year ago
- Rated 5 out of 5by Firefox user 17550135, a year ago
- Rated 5 out of 5by RexZero, a year ago
- Rated 5 out of 5by Firefox user 18499411, a year ago
- Rated 5 out of 5by Ph1, a year ago
- Rated 5 out of 5by Igor Oliveira, a year ago
- Rated 5 out of 5by fhardy, a year ago
- Rated 5 out of 5by Firefox user 18490300, a year ago
- Rated 5 out of 5by 满穗, a year ago
- Rated 5 out of 5by Kalinka74, a year ago
- Rated 5 out of 5by Paulo Pereira, a year ago
- Rated 5 out of 5by cnb, a year ago
- Rated 5 out of 5by Sergey Novoseltsev, a year ago
- Rated 5 out of 5by DannSKiller, a year agoAfter 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';
}
});
});
})(); - Rated 5 out of 5by Kuyglitlbf, a year ago
- Rated 5 out of 5by abdalla.rabie, a year ago