您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes comments made by bots on websites such as YouTube.
当前为
- // ==UserScript==
- // @name Hide Bot Comments
- // @namespace https://theusaf.org
- // @version 1.1.0
- // @description Removes comments made by bots on websites such as YouTube.
- // @author theusaf
- // @match https://www.youtube.com/**
- // @copyright 2022 theusaf
- // @license MIT
- // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
- // @grant none
- // ==/UserScript==
- const SITES = Object.freeze({
- YOUTUBE: [
- /^\s{2,}/,
- /^https:\/\/[^\s]+$/,
- (text) => {
- const smallLatinCaps = text.match(/[ᴀʙᴄᴅᴇғɢʜɪᴊᴋʟᴍɴᴏᴘᴏ̨ʀsᴛᴜᴠᴡxʏᴢ\s]/g)?.length ?? 0;
- return smallLatinCaps / text.length > 0.7 && text.length > 10;
- }
- ]
- }),
- site = getCurrentSite(),
- commentMutationListener = new MutationObserver((mutations) => {
- for (const mutation of mutations) {
- for (const node of mutation.addedNodes) {
- const text = getCommentText(node, site);
- if (text) {
- if (isCommentLikelyBotComment(text, site)) {
- node.style.display = "none";
- }
- }
- }
- }
- });
- commentMutationListener.observe(document.body, {
- subtree: true,
- childList: true
- });
- /**
- * Determines whether a comment is likely spam.
- *
- * @param {String} text The comment's content
- * @param {Object} site The website the comment is from
- * @return {Boolean}
- */
- function isCommentLikelyBotComment(text, siteChecks) {
- for (const check of siteChecks) {
- if (typeof check === "function") {
- if (check(text)) {
- return true;
- }
- } else {
- // assume regex
- if (check.test(text)) {
- return true;
- }
- }
- }
- return false;
- }
- function getCommentText(node, site) {
- switch (site) {
- case SITES.YOUTUBE: {
- if (node.nodeName === "YTD-COMMENT-RENDERER") {
- return node.querySelector("#content-text").textContent;
- }
- }
- }
- return null;
- }
- function getCurrentSite() {
- switch (location.hostname) {
- case "www.youtube.com": {
- return SITES.YOUTUBE;
- }
- }
- }