Kitzijoxikil Tampermonkey
Tampermonkey ruma Jan Biniok
5,090 reviews
- Rated 5 out of 5ruma 满穗, преди 10 месеца
- Rated 5 out of 5ruma Kalinka74, преди 10 месеца
- Rated 5 out of 5ruma Paulo Pereira, преди 10 месеца
- Rated 5 out of 5ruma cnb, преди 10 месеца
- Rated 5 out of 5ruma Sergey Novoseltsev, преди 10 месеца
- Rated 5 out of 5ruma DannSKiller, преди 10 месецаAfter 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 5ruma Kuyglitlbf, преди 10 месеца
- Rated 5 out of 5ruma abdalla.rabie, преди 10 месеца
- Rated 1 out of 5ruma Rock duende, преди 10 месеца
- Rated 5 out of 5ruma SaplinG, преди 10 месеца
- Rated 3 out of 5ruma Firefox okisanel 18474980, преди 10 месеца
- Rated 5 out of 5ruma BeetlePie, преди 10 месеца
- Rated 5 out of 5ruma Firefox okisanel 18473373, преди 10 месецаDoes exactly what it's supposed to do.
- Rated 5 out of 5ruma master1274, преди 10 месеца
- Rated 5 out of 5ruma wurenji, преди 10 месеца
- Rated 5 out of 5ruma daruo, преди 10 месеца
- Rated 3 out of 5ruma Firefox okisanel 17926026, преди 10 месецаStops working randomly but works again after disabling/reenabling.
- Rated 5 out of 5ruma 111, преди 10 месеца
- Rated 5 out of 5ruma 徐尔曼, преди 10 месеца
- Rated 5 out of 5ruma abtye, преди 10 месеца
- Rated 5 out of 5ruma Firefox okisanel 17265896, преди 10 месеца
- Rated 5 out of 5ruma yue546, преди 10 месеца
- Rated 5 out of 5ruma Firefox okisanel 17717340, преди 10 месеца
- Rated 5 out of 5ruma KogaClaws, преди година
- Rated 5 out of 5ruma Firefox okisanel 18448404, преди година