🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

No Keywords

Get rid of fucking highlighted search keywords.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name         No Keywords
// @name:zh-CN   移除搜索关键词
// @namespace    http://tampermonkey.net/
// @version      0.3.3
// @description  Get rid of fucking highlighted search keywords.
// @description:zh-CN 去你妈的傻逼高亮搜索关键词。
// @author       PRO
// @match        https://zhidao.baidu.com/question/*
// @match        https://www.bilibili.com/*
// @match        https://blog.csdn.net/*
// @icon         https://cors.cdn.bcebos.com/amis/namespaces/m-activity/iknow-duck/2022-12/1671625780490/%E6%90%9C%E7%B4%A2wap.png
// @grant        none
// @license      gpl-3.0
// ==/UserScript==

(function () {
    'use strict';
    const name = GM_info.script.name;
    const log = console.log.bind(console, `[${name}]`);
    // Adapted from https://www.abeautifulsite.net/posts/querying-through-shadow-roots/
    function shadowQueryAll(selector, rootNode = document) {
        const selectors = String(selector).split('>>>');
        let currentNodes = [rootNode];
        selectors.forEach((selector) => {
            let nextNodes = [];
            currentNodes.forEach(node => {
                if (node instanceof Element && node.shadowRoot) {
                    nextNodes.push(...node.shadowRoot.querySelectorAll(selector));
                } else if (node === rootNode) {
                    nextNodes.push(...rootNode.querySelectorAll(selector));
                }
            });
            currentNodes = nextNodes;
        });
        return currentNodes;
    }
    function fuck(kw) { // `kw` is the element to be fixed
        const txt = kw.textContent;
        const tn = document.createTextNode(txt);
        kw.parentElement.replaceChild(tn, kw);
        log(`Removed keyword "${txt}"`);
    }
    function purify(config) {
        for (const keyword of config.keywords) {
            shadowQueryAll(keyword).forEach(fuck);
        }
        for (const icon of config.icons) {
            shadowQueryAll(icon).forEach(icon => icon.remove());
        }
    }
    const allConfig = {
        "zhidao.baidu.com": {
            keywords: [".rich-content-container a[highlight='true']"],
            icons: [],
            persistent: false
        },
        "www.bilibili.com": {
            keywords: [
                "bili-comments >>> bili-comment-thread-renderer >>> bili-comment-renderer >>> bili-rich-text >>> a[data-keyword]",
                "bili-comments >>> bili-comment-thread-renderer >>> bili-comment-replies-renderer >>> bili-comment-reply-renderer >>> bili-rich-text >>> a[data-keyword]"
            ],
            icons: ["bili-comments >>> bili-comment-thread-renderer >>> bili-comment-renderer >>> bili-rich-text >>> a[data-keyword] > img"],
            persistent: true
        },
        "blog.csdn.net": {
            keywords: ["a.hl-1", "span.edu-hl.hl-1", "span.words-blog.hl-git-1"],
            icons: [],
            persistent: false
        }
    }
    if (!(window.location.hostname in allConfig)) return;
    const config = allConfig[window.location.hostname];
    if (config.persistent) {
        window.setInterval(() => {
            purify(config);
        }, 1000);
    } else {
        purify(config);
    }
})();