🔥 完美支持百度网盘文件无限速批量下载,一键化批量解析文件,免费无限制白嫖使用,更多功能正在缓慢开发中 🔥
< Feedback on 🔥【就是加速】百度网盘无限速批量下载 - 支持文件夹下载 🔥
你又来了
你又来了
哈哈,没办法,评论区乌烟瘴气
👍🏻希望加上当前页评论内容也过滤下
👍🏻希望加上当前页评论内容也过滤下
哈哈好主意,搞定啦
// ==UserScript==
// @name 垃圾屏蔽器
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 解决greasyfork上的垃圾评论刷屏问题
// @author kkk
// @match *://greasyfork.org/*
// @run-at document-end
// @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 请将🐒的用户id或者昵称填写至下方的userID中
const userID = ['1145294','丛林寻宝儿儿'];
const userLinks = Array.from(document.getElementsByClassName("user-link"));
for (let userLink of userLinks) {
if (userID.some(id => userLink.href.includes(id)||userLink.textContent.includes(id))) {
userLink.closest(".discussion-list-container")?.remove();
userLink.closest(".comment")?.remove();
}
}
})();
// ==UserScript== // @name 垃圾屏蔽器 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 解决greasyfork上的垃圾评论刷屏问题 // @author kkk // @match *://greasyfork.org/* // @run-at document-end // @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org // @grant none // ==/UserScript== (function() { 'use strict'; // 请将🐒的用户id或者昵称填写至下方的userID中 const userID = ['1145294','丛林寻宝儿儿']; const userLinks = Array.from(document.getElementsByClassName("user-link")); for (let userLink of userLinks) { if (userID.some(id => userLink.href.includes(id)||userLink.textContent.includes(id))) { userLink.closest(".discussion-list-container")?.remove(); userLink.closest(".comment")?.remove(); } } })();
牛掰
nb,舒服多了
不错
如何过滤🐒的降智发言,避免刷屏困扰?
// ==UserScript== // @name 垃圾屏蔽器 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 解决greasyfork上的垃圾评论刷屏问题 // @author kkk // @match *://greasyfork.org/* // @run-at document-end // @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org // @grant none // ==/UserScript== (function() { 'use strict'; // 请将🐒的用户id或者昵称填写至下方的userID中 const userID = ['1145294','丛林寻宝儿儿']; const userLinks = Array.from(document.getElementsByClassName("user-link")); for (let userLink of userLinks) { if (userID.some(id => userLink.href.includes(id)||userLink.textContent.includes(id))) { userLink.closest(".discussion-list-container").remove(); } } })();
谢谢你
如何过滤🐒的降智发言,避免刷屏困扰?