Tampermonkey のレビュー
Tampermonkey 作成者: Jan Biniok
DannSKiller によるレビュー
5 段階中 5 の評価
DannSKiller によるレビュー (2年前)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';
}
});
});
})();
// ==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,275
- 5 段階中 4 の評価Firefox ユーザー 16410709 によるレビュー (1時間前)
- 5 段階中 5 の評価Firefox ユーザー 19942049 によるレビュー (18日前)
- 5 段階中 5 の評価Firefox ユーザー 19819254 によるレビュー (19日前)
- 5 段階中 5 の評価Mark Andrew Gerads によるレビュー (1ヶ月前)
開発者の返信
投稿日時: 20日前Tampermonkey itself doesn't cause any connection traffic other than a few update checks. Maybe a script you installed is causing this? Otherwise please file a bug report at https://github.com/Tampermonkey/tampermonkey/issues開発者の返信
投稿日時: 20日前What banners do you mean? Tampermonkey should not show any. Maybe a script you installed shows those? Otherwise please file a bug report at https://github.com/Tampermonkey/tampermonkey/issues開発者の返信
投稿日時: 20日前There is no Google Analytics; I use a self‑hosted Matomo instance, which is disabled by default.
The extension asks for a donation after two weeks of usage. A click at "I don't want to contribute" makes Tampermonkey never ask again.
If you see different behavior, then please file a bug report at https://github.com/Tampermonkey/tampermonkey/issues- 5 段階中 1 の評価Firefox ユーザー 17501884 によるレビュー (2ヶ月前)数ヶ月前の更新の際、これまで作ってきたユーザースクリプトのデータが全て消滅しました。
あらゆるデータベースファイル、削除されたデータ等を探しても残っておらず、途方もない損失に嘆きましたが、少しずつ復旧させてきました。
そして今日、Firefoxを再起動した際、再び何かのトラブルで全てのユーザースクリプトが消滅しました。
もうこれ以上信頼を預けることはできません。ViolentMonkey等への移行を速やかに行います。 - 5 段階中 5 の評価Firefox ユーザー 12859804 によるレビュー (2ヶ月前)
- 5 段階中 5 の評価Firefox ユーザー 19828004 によるレビュー (2ヶ月前)