吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 11339|回复: 574
收起左侧

[其他原创] 【油猴脚本】百度搜索深度净化器-智能移除百度搜索结果中的各类广告

    [复制链接]
MRBANK 发表于 2026-5-7 10:52
本帖最后由 MRBANK 于 2026-5-9 09:40 编辑

打开设置:

相关设置开关:
2026-05-08_104319.png

🧹 百度搜索深度净化器
你是否受够了百度搜索满屏的广告、无关的热榜和繁杂的推荐?这款脚本专为百度搜索打造,帮你剥离冗余信息,只留纯粹搜索结果。
🎯 核心功能
🚫 全方位广告拦截:精准移除搜索结果推广、右侧底部广告,并专项打击大型品牌通栏背景广告,拒绝视觉霸凌。
🛡️ 深度屏蔽百家号:不仅识别常规链接,更穿透百度跳转层与 data-feedback 隐藏属性,彻底屏蔽百家号图文及全民小视频,让内容营销号无处遁形。
✂️ 干掉页面冗余:一键清理右侧相关搜索、百度热榜、保障提示、底部相关搜索及“大家还在搜”,还你极简页面。
🔗 自定义 URL 黑名单:支持手动添加想屏蔽的网站域名(如营销站、自媒体站等),模糊匹配机制让填写的 URL 无需顾及 http 或 www 前缀,精准拉黑不手软。

✨ 产品特色

🎨 优雅的设置面板:告别粗暴的代码配置,点击油猴菜单即可唤起精致的原生风设置面板,开关与文本框交互,所见即所得。
⚡ 动态实时清理:基于 MutationObserver 与防抖机制,无论百度页面如何异步加载或动态刷新,垃圾内容刚冒头即被秒删,拒绝页面闪烁。
🧠 逆向寻祖算法:针对百度频繁变动的 DOM 结构,采用“特征子元素向上寻祖”策略,无论卡片结构嵌套多深,都能连根拔起,抗更新能力强。



// ==UserScript==
// @name         百度搜索深度净化器
// @namespace    http://tampermonkey.net/
// @version      3.6
// @description  智能移除百度搜索结果中的各类广告、相关搜索、热榜、百家号、品牌广告等,支持自定义URL屏蔽
// @author       MRBANK
// @match        *://www.baidu.com/*
// @icon         https://www.baidu.com/favicon.ico
// @grant        GM_registerMenuCommand
// @run-at       document-idle
// @downloadURL  https://scriptcat.org/scripts/code/6183/%E7%99%BE%E5%BA%A6%E6%90%9C%E7%B4%A2%E6%B7%B1%E5%BA%A6%E5%87%80%E5%8C%96%E5%99%A8.user.js
// @updateURL    https://scriptcat.org/scripts/code/6183/%E7%99%BE%E5%BA%A6%E6%90%9C%E7%B4%A2%E6%B7%B1%E5%BA%A6%E5%87%80%E5%8C%96%E5%99%A8.user.js
// ==/UserScript==

(function() {
    'use strict';

    // ================= 配置管理 =================
    const CONFIG_KEY = 'baidu_purifier_config';
    const defaultConfig = {
        ad: true,               // 1. 各类广告
        brandAd: true,          // 2. 品牌广告(通栏背景)
        rightRelated: true,     // 3. 右侧相关搜索
        rightHot: true,         // 4. 右侧百度热榜
        rightHint: true,        // 5. 右侧百度保障提示
        rightBottomAd: true,    // 6. 右侧底部推广
        searchAlso: true,       // 7. 大家还在搜/都在搜
        bottomRelated: true,    // 8. 底部相关搜索
        baijiahao: true,        // 9. 屏蔽百家号(快捷开关)
        customBlockedUrls: ['baijiahao.baidu.com'] // 10. 自定义屏蔽URL列表
    };

    const configStructure = [
        {
            groupName: "广告与推广",
            items: [
                { key: 'ad', label: '搜索结果广告' },
                { key: 'brandAd', label: '品牌广告(通栏背景)' },
                { key: 'rightBottomAd', label: '右侧底部推广' }
            ]
        },
        {
            groupName: "右侧栏模块",
            items: [
                { key: 'rightRelated', label: '右侧相关搜索' },
                { key: 'rightHot', label: '右侧百度热榜' },
                { key: 'rightHint', label: '右侧保障提示' }
            ]
        },
        {
            groupName: "内容过滤",
            items: [
                { key: 'baijiahao', label: '屏蔽百家号来源(快捷)' },
                { key: 'customBlockedUrls', label: '自定义屏蔽URL(换行分隔,模糊匹配)', type: 'textarea', placeholder: '例如:\nbaijiahao.baidu.com\nmi.com' }
            ]
        },
        {
            groupName: "底部与推荐",
            items: [
                { key: 'searchAlso', label: '大家还在搜/都在搜' },
                { key: 'bottomRelated', label: '底部相关搜索' }
            ]
        }
    ];

    let cachedConfig = null;

    function getConfig() {
        if (cachedConfig) return cachedConfig;
        let saved = localStorage.getItem(CONFIG_KEY);
        if (saved) {
            try { cachedConfig = {...defaultConfig, ...JSON.parse(saved)}; }
            catch(e) { cachedConfig = {...defaultConfig}; }
        } else {
            cachedConfig = {...defaultConfig};
        }
        if (!Array.isArray(cachedConfig.customBlockedUrls)) {
            cachedConfig.customBlockedUrls = defaultConfig.customBlockedUrls;
        }
        return cachedConfig;
    }

    function saveConfig(cfg) {
        cachedConfig = cfg;
        localStorage.setItem(CONFIG_KEY, JSON.stringify(cfg));
    }

    // ================= 油猴菜单与设置 UI =================
    let isPanelOpen = false;
    let needReload = false;

    function openSettingsPanel() {
        if (isPanelOpen) return;
        isPanelOpen = true;
        needReload = false;

        const style = document.createElement('style');
        style.id = 'bp-settings-style';
        style.textContent = `
            #bp-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 999998; display: flex; align-items: center; justify-content: center; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
            #bp-modal { background: #fff; width: 400px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); overflow: hidden; display: flex; flex-direction: column; }
            #bp-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid #e8e8e8; }
            #bp-header h3 { margin: 0; font-size: 16px; color: #333; }
            #bp-close-btn { background: none; border: none; font-size: 20px; color: #999; cursor: pointer; line-height: 1; padding: 0; }
            #bp-close-btn:hover { color: #333; }
            #bp-body { padding: 10px 0; max-height: 70vh; overflow-y: auto; }
            .bp-group-title { padding: 10px 20px 5px; margin: 0; font-size: 13px; color: #888; font-weight: 500; }
            .bp-switch-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; font-size: 14px; color: #333; transition: background 0.2s; }
            .bp-switch-row:hover { background: #f5f7fa; }
            .bp-textarea-row { flex-direction: column; align-items: flex-start; }
            .bp-textarea-label { margin-bottom: 8px; font-size: 13px; color: #555; }
            .bp-textarea { width: 100%; height: 80px; border: 1px solid #ddd; border-radius: 4px; padding: 8px; font-size: 12px; resize: vertical; box-sizing: border-box; font-family: inherit; line-height: 1.5; }
            .bp-textarea:focus { outline: none; border-color: #4e6ef2; }
            .bp-switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
            .bp-switch input { opacity: 0; width: 0; height: 0; }
            .bp-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .3s; border-radius: 22px; }
            .bp-slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px; background-color: white; transition: .3s; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
            .bp-switch input:checked + .bp-slider { background-color: #4e6ef2; }
            .bp-switch input:checked + .bp-slider:before { transform: translateX(18px); }
        `;
        document.head.appendChild(style);

        const overlay = document.createElement('div');
        overlay.id = 'bp-overlay';
        const modal = document.createElement('div');
        modal.id = 'bp-modal';

        const header = document.createElement('div');
        header.id = 'bp-header';
        const title = document.createElement('h3');
        title.textContent = '百度净化器 - 设置';
        const closeBtn = document.createElement('button');
        closeBtn.id = 'bp-close-btn';
        closeBtn.textContent = '✕';
        header.appendChild(title);
        header.appendChild(closeBtn);

        const body = document.createElement('div');
        body.id = 'bp-body';
        const cfg = getConfig();

        configStructure.forEach(group => {
            const groupTitle = document.createElement('div');
            groupTitle.className = 'bp-group-title';
            groupTitle.textContent = group.groupName;
            body.appendChild(groupTitle);

            group.items.forEach(item => {
                const row = document.createElement('div');
                row.className = 'bp-switch-row' + (item.type === 'textarea' ? ' bp-textarea-row' : '');

                if (item.type === 'textarea') {
                    const label = document.createElement('div');
                    label.className = 'bp-textarea-label';
                    label.textContent = item.label;
                    const textarea = document.createElement('textarea');
                    textarea.className = 'bp-textarea';
                    textarea.dataset.key = item.key;
                    textarea.placeholder = item.placeholder || '';
                    textarea.value = (cfg[item.key] || []).join('\n');
                    row.appendChild(label);
                    row.appendChild(textarea);
                    body.appendChild(row);
                    textarea.addEventListener('change', (e) => {
                        const currentCfg = getConfig();
                        const val = e.target.value.split('\n').map(s => s.trim()).filter(s => s.length > 0);
                        currentCfg[item.key] = val;
                        saveConfig(currentCfg);
                        needReload = true;
                    });
                } else {
                    const label = document.createElement('span');
                    label.textContent = item.label;
                    const switchContainer = document.createElement('label');
                    switchContainer.className = 'bp-switch';
                    const input = document.createElement('input');
                    input.type = 'checkbox';
                    input.checked = cfg[item.key];
                    input.dataset.key = item.key;
                    const slider = document.createElement('span');
                    slider.className = 'bp-slider';
                    switchContainer.appendChild(input);
                    switchContainer.appendChild(slider);
                    row.appendChild(label);
                    row.appendChild(switchContainer);
                    body.appendChild(row);
                    input.addEventListener('change', (e) => {
                        const currentCfg = getConfig();
                        currentCfg[e.target.dataset.key] = e.target.checked;
                        saveConfig(currentCfg);
                        needReload = true;
                    });
                }
            });
        });

        modal.appendChild(header);
        modal.appendChild(body);
        overlay.appendChild(modal);
        document.body.appendChild(overlay);

        const closePanel = () => {
            document.body.removeChild(overlay);
            document.head.removeChild(style);
            isPanelOpen = false;
            if (needReload) location.reload();
        };
        closeBtn.addEventListener('click', closePanel);
        overlay.addEventListener('click', (e) => { if (e.target === overlay) closePanel(); });
    }

    GM_registerMenuCommand('🧹 净化器设置', openSettingsPanel);

    // 寻找包含特征的卡片最外层容器
    function findCardContainer(el) {
        return el.closest('.c-container, .result, .result-op, div[id^="norm"], #top-ad, .tenon_pc_material, [tpl], [card-show-log], div[class*="aladdin"]');
    }


    // ================= 核心清理逻辑 =================
    function clearBaiduCrap() {
        const cfg = getConfig();

        // 1. 移除带有"广告"标签的推广内容
        if (cfg.ad) {
            const adLabels = document.querySelectorAll('.ec-tuiguang, .ecfc-tuiguang, span[data-tuiguang], a.m');
            adLabels.forEach(label => {
                const isAd = label.classList.contains('ec-tuiguang') ||
                             label.classList.contains('ecfc-tuiguang') ||
                             label.hasAttribute('data-tuiguang') ||
                             (label.tagName === 'A' && label.classList.contains('m') && label.textContent.trim() === '广告');
                if (isAd) {
                    const container = findCardContainer(label);
                    if (container) container.remove();
                }
            });
        }

        // 2. 移除品牌广告
        if (cfg.brandAd) {
            const topAd = document.getElementById('top-ad');
            if (topAd) topAd.remove();
            document.querySelectorAll('.tenon_pc_comp_columbus_banner_brand_tip').forEach(el => {
                const container = findCardContainer(el) || el.closest('.tenon_pc_comp_columbus_banner_container');
                if (container) container.remove();
            });
            document.querySelectorAll('.tenon_pc_comp_columbus_banner_container').forEach(el => {
                const wrapper = el.closest('.c-container') || el.closest('.result') || el.parentElement;
                if (wrapper && wrapper.offsetHeight > 200) wrapper.remove();
            });
        }

        // 3-8 模块移除
        if (cfg.rightRelated) { document.querySelectorAll('[tpl="recommend_list_san"]').forEach(el => el.remove()); document.querySelectorAll('.recommend-single-list_5TJKn').forEach(el => { let c = el.closest('.result-op') || el.closest('.cr-content'); if(c) c.remove(); }); }
        if (cfg.rightHot) { document.querySelectorAll('[tpl="right_toplist1"]').forEach(el => el.remove()); document.querySelectorAll('.FYB_RD').forEach(el => { let c = el.closest('.result-op') || el.closest('.cr-content'); if(c) c.remove(); }); }
        if (cfg.rightHint) { document.querySelectorAll('.hint_right_middle, [tpl="app/hint-head-top"]').forEach(el => { const c = el.closest('.hint_right_middle') || el; if(c) c.remove(); }); }
        if (cfg.rightBottomAd) { const rba = document.querySelector('#con-right-bottom') || document.querySelector('.ad-widget-header'); if (rba) { const c = rba.closest('#con-right-bottom') || rba.closest('div[id^="m"]') || rba; if(c) c.remove(); } }
        if (cfg.searchAlso) { const sn = document.evaluate("//div[contains(text(), '大家还在搜') or contains(text(), '大家都在搜')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); for (let i = 0; i < sn.snapshotLength; i++) { const c = sn.snapshotItem(i).closest('.c-container') || sn.snapshotItem(i).closest('.result-op') || sn.snapshotItem(i).closest('[class*="rg-upgrade"]'); if(c) c.remove(); } }
        if (cfg.bottomRelated) { document.querySelectorAll('table[class*="rs-table"]').forEach(el => { const c = el.closest('.c-container') || el.closest('.result-op') || el.parentElement; if(c) c.remove(); }); const rn = document.evaluate("//div[contains(text(), '相关搜索') or contains(text(), '相关推荐')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); for (let i = 0; i < rn.snapshotLength; i++) { const node = rn.snapshotItem(i); if (node.closest('table[class*="rs-table"]') || node.querySelector('table[class*="rs-table"]')) { const c = node.closest('.c-container') || node.closest('.result-op') || node.parentElement; if(c) c.remove(); } } }

        // 9. 屏蔽百家号来源 (重点重构:逆向寻祖查找)
        if (cfg.baijiahao) {
            // 方案A:匹配来源文本标识 (新老结构均适用)
            document.querySelectorAll('.cosc-source-text, .c-showurl').forEach(el => {
                if (el.textContent.includes('百家号') || el.textContent.includes('baijiahao.baidu.com')) {
                    const container = findCardContainer(el);
                    if (container) container.remove();
                }
            });

            // 方案B:解析隐藏在 data-feedback 中的真实落地页链接
            document.querySelectorAll('[data-feedback]').forEach(el => {
                try {
                    const fbStr = el.getAttribute('data-feedback').replace(/"/g, '"');
                    const fbData = JSON.parse(fbStr);
                    // 全民小视频(quanmin)也属于百家号体系
                    if (fbData.url && (fbData.url.includes('baijiahao.baidu.com') || fbData.url.includes('quanmin.baidu.com'))) {
                        const container = findCardContainer(el);
                        if (container) container.remove();
                    }
                } catch(e) {}
            });

            // 方案C:原有属性兜底
            document.querySelectorAll('a[data-landurl*="baijiahao.baidu.com"], [mu*="baijiahao.baidu.com"]').forEach(el => {
                const container = findCardContainer(el);
                if (container) container.remove();
            });
        }

        // 10. 自定义URL屏蔽
        const customUrls = cfg.customBlockedUrls || [];
        if (customUrls.length > 0) {
            const containers = document.querySelectorAll('.c-container, .result, .result-op, div[id^="norm"], #top-ad, .tenon_pc_material, [tpl], [card-show-log], div[class*="aladdin"]');

            containers.forEach(el => {
                if (!el.isConnected) return; // 跳过已被上面逻辑移除的元素

                let urlTexts = [];

                // 提取 mu 属性
                if (el.getAttribute('mu')) urlTexts.push(el.getAttribute('mu'));
                el.querySelectorAll('[mu]').forEach(sub => urlTexts.push(sub.getAttribute('mu')));

                // 提取 data-landurl 属性
                el.querySelectorAll('[data-landurl]').forEach(a => urlTexts.push(a.getAttribute('data-landurl')));

                // 提取显示的URL文本 (兼容新旧结构)
                el.querySelectorAll('.c-showurl, .c-color-gray, .cosc-source-text').forEach(span => urlTexts.push(span.textContent));

                // 提取百度跳转链接中的真实 URL
                el.querySelectorAll('a[href*="url="]').forEach(a => {
                    const href = a.getAttribute('href');
                    const match = href.match(/[?&]url=([^&]+)/);
                    if (match && match[1]) {
                        try { urlTexts.push(decodeURIComponent(match[1])); } catch(e) {}
                    }
                });

                // 提取 data-feedback 中隐藏的真实 URL
                el.querySelectorAll('[data-feedback]').forEach(fbEl => {
                    try {
                        const fbStr = fbEl.getAttribute('data-feedback').replace(/"/g, '"');
                        const fbData = JSON.parse(fbStr);
                        if (fbData.url) urlTexts.push(fbData.url);
                    } catch(e) {}
                });

                let combinedText = urlTexts.join(' ').toLowerCase();
                combinedText = combinedText.replace(/https?:\/\//g, '').replace(/www\./g, '').replace(/\s+/g, '');

                for (const blockedStr of customUrls) {
                    let cleanBlockedStr = blockedStr.toLowerCase().trim();
                    if (!cleanBlockedStr) continue;
                    cleanBlockedStr = cleanBlockedStr.replace(/https?:\/\//g, '').replace(/www\./g, '');

                    if (combinedText.includes(cleanBlockedStr)) {
                        el.remove();
                        break;
                    }
                }
            });
        }
    }

    // ================= 启动逻辑 =================
    clearBaiduCrap();

    let timer = null;
    const observer = new MutationObserver(() => {
        if (timer) clearTimeout(timer);
        timer = setTimeout(clearBaiduCrap, 150);
    });

    const wrapper = document.getElementById('wrapper') || document.body;
    observer.observe(wrapper, { childList: true, subtree: true });

})();
百度搜索深度净化器-3.6.user.js.zip (6.02 KB, 下载次数: 1957, 售价: 3 CB吾爱币)

免费评分

参与人数 154吾爱币 +152 热心值 +138 收起 理由
逢山鬼泣 + 1 + 1 谢谢@Thanks!
liubai600 + 1 谢谢@Thanks!
ninofeliz + 1 + 1 热心回复!
kudoless + 2 + 1 我很赞同!
liuyufei + 1 + 1 我很赞同!
aaa661179 + 1 + 1 热心回复!
阿尔伯特 + 1 + 1 谢谢@Thanks!
af8889 + 1 + 1 谢谢@Thanks!
sdsx2005 + 1 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!
qq441433771 + 1 + 1 谢谢@Thanks!
lovxyj + 1 + 1 谢谢@Thanks!
yiqibufenli + 1 + 1 我很赞同!
resu + 1 + 1 用心讨论,共获提升!
鸿熙 + 1 + 1 谢谢@Thanks!
zcrambo + 1 + 1 我很赞同!
xuhao4577062311 + 1 + 1 我很赞同!
絕情 + 1 + 1 谢谢@Thanks!
苏紫方璇 + 7 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!
TLP9300799098 + 1 + 1 谢谢@Thanks!
gaoqianbu + 1 + 1 我很赞同!
tvrcfdfe + 1 + 1 我很赞同!
tblc + 1 我很赞同!
益达min + 1 + 1 热心回复!
sqnqbzs + 1 + 1 谢谢@Thanks!
大丨表哥 + 1 + 1 谢谢@Thanks!
xiaomr1990 + 1 + 1 谢谢@Thanks!
abpyu + 2 + 1 谢谢@Thanks!
Tusimple + 1 + 1 我很赞同!
yanchaojin + 1 + 1 用心讨论,共获提升!
YuLoo + 1 + 1 热心回复!
Fr1day + 1 + 1 我很赞同!
fei5150 + 1 谢谢@Thanks!
xuxudong1110 + 1 + 1 谢谢@Thanks!
snowfox007 + 1 谢谢@Thanks!
usairaq + 1 谢谢@Thanks!
IcePlume + 1 + 1 谢谢@Thanks!
shiming51 + 1 + 1 鼓励转贴优秀软件安全工具和文档!
白逸轩 + 1 + 1 用心讨论,共获提升!
哇zz + 1 + 1 谢谢@Thanks!
大漠长风 + 1 + 1 谢谢@Thanks!好东西啊好东西
wanfen11 + 1 我很赞同!
xn213 + 1 + 1 鼓励转贴优秀软件安全工具和文档!
mgc + 1 + 1 谢谢@Thanks!
xiongwang + 1 谢谢@Thanks!
kingstarg + 1 + 1 谢谢@Thanks!
hysgh888 + 1 + 1 谢谢@Thanks!
card628 + 1 热心回复!
tocabd + 1 + 1 谢谢@Thanks!
whh936 + 1 + 1 谢谢@Thanks!
wangqida1990 + 1 热心回复!
sunline + 1 + 1 谢谢@Thanks!
bingshen + 1 + 1 谢谢@Thanks!
wzl90327 + 1 + 1 谢谢@Thanks!
lmlang + 1 + 1 谢谢@Thanks!
莫奇 + 1 + 1 谢谢@Thanks!
JSLN + 1 + 1 谢谢@Thanks!
zjun777 + 1 + 1 谢谢@Thanks!
水蜜桃好甜 + 1 + 1 热心回复!
坡婆子 + 1 + 1 用心讨论,共获提升!
MNXYPRO + 1 + 1 谢谢@Thanks!
rkdawn + 1 + 1 谢谢@Thanks!
xuemantian0304 + 1 谢谢@Thanks!
hdfskycat + 1 + 1 谢谢@Thanks!
Qhinghe1983 + 1 + 1 用心讨论,共获提升!
wojaiyh + 1 + 1 谢谢@Thanks!
yqyq008 + 1 + 1 谢谢@Thanks!
妹控真是太好了 + 1 + 1 热心回复!
硬骨头长了毛 + 1 谢谢@Thanks!
bzdqsmmz + 1 + 1 谢谢@Thanks!
zjh106 + 1 + 1 谢谢@Thanks!
Chomp9149 + 1 + 1 谢谢@Thanks!
jie520yun + 1 + 1 我很赞同!
wushengli + 1 + 1 我很赞同!
love784400 + 1 + 1 谢谢@Thanks!
中国法制史 + 1 + 1 把JS文件拖动到浏览器图标即可安装
cd1688 + 1 谢谢@Thanks!
失意问答 + 1 + 1 谢谢@Thanks!
戏中人 + 1 + 1 谢谢@Thanks!
liyongtao + 1 + 1 热心回复!
cyc1307 + 1 + 1 热心回复!
theStyx + 1 + 1 热心回复!
134wap + 1 + 1 谢谢@Thanks!
myc31115 + 1 我很赞同!
mmmodern + 1 + 1 谢谢@Thanks!
fengwen18245 + 1 + 1 我很赞同!
fansxie + 1 + 1 我很赞同!
rorodesheng + 1 + 1 谢谢@Thanks!
likec2 + 1 + 1 谢谢@Thanks!
Prestige + 1 + 1 谢谢@Thanks!
nothingtome + 1 我很赞同!
lsxon + 1 + 1 谢谢@Thanks!
阿基米德啊 + 1 我很赞同!
Yiduoyun7 + 1 谢谢@Thanks!
aoboring + 1 + 1 谢谢@Thanks!
szluyang + 1 用心讨论,共获提升!
twomoon + 1 + 1 谢谢@Thanks!
wolaipojie + 1 + 1 谢谢@Thanks!
webmarksman + 1 热心回复!
Cleverwwh + 1 + 1 热心回复!
唐小样儿 + 1 我很赞同!

查看全部评分

本帖被以下淘专辑推荐:

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

wapj3076 发表于 2026-5-7 11:13
请楼主编制使用教程,供我们小白安装使用。花币下载了不会安装使用
pixcn007 发表于 2026-5-7 11:08
没法加载,怎么回事?

点评

[attachimg]2850605[/attachimg][attachimg]2850606[/attachimg][attachimg]2850604[/attachimg]  详情 回复 发表于 2026-5-11 12:41
顺⑦zi然 发表于 2026-5-9 08:28
这个太好了,百度搜索越来越不正经了,需要治理一下
zzz1qqq 发表于 2026-5-11 12:04
无法安装
fzlte0 发表于 2026-5-12 08:14
感谢分享,能再改进下,出个chrome插件版的就更好了
qqhsx 发表于 2026-5-7 11:54
用uBlocke 后一切都清净了
qingfengdexin 发表于 2026-5-11 18:16

1、扩展程序界面中点击篡改猴Tampermonkey    详情
2、打开:允许运行用户脚本
cao_jf 发表于 2026-5-10 18:44
安装不成功
wudaoxiyang 发表于 2026-5-10 08:32
dsshiqiang 发表于 2026-5-9 18:47
安装不成功,不知问题出在哪里

在扩展设置那里选择 允许运行用户脚本 打开,就可以正常使用了
dsshiqiang 发表于 2026-5-9 18:47
安装不成功,不知问题出在哪里
gqzssy 发表于 2026-5-7 10:55
这个不错,下了试试。谢谢分享哈。
xuewujianlee 发表于 2026-5-7 10:58
下来试试,感谢分享
pixcn007 发表于 2026-5-7 11:00
谢谢分享
pixcn007 发表于 2026-5-7 11:01
谢谢分享谢谢分享
maya123 发表于 2026-5-7 11:03
虽然不用百度,但是收藏支持
susong987 发表于 2026-5-7 11:06
手机的油猴也可以使用不?
mounvence 发表于 2026-5-7 11:09
感谢分享
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - 52pojie.cn ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2026-5-13 06:32

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表