手机百度搜索净化

在手机百度搜索结果页面隐藏广告和推荐内容和和禁止搜索结果自动播放,提升搜索体验。

目前為 2023-07-09 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        手机百度搜索净化
// @version     1.4
// @author      大萌主
// @description  在手机百度搜索结果页面隐藏广告和推荐内容和和禁止搜索结果自动播放,提升搜索体验。
// @match       https://m.baidu.com/*
// @match       https://www.baidu.com/*
// @run-at       document-start
// @grant        none
// @namespace https://greasyfork.org/users/452911
// ==/UserScript==

(function() {
    'use strict';

    let style = document.createElement('style');
    style.innerHTML = `.ec_wise_ad *,[srcid^='xcx_'],[srcid='guanfanghao'],[srcid='note_lead'],DIV#page-relative.se-page-relative,[srcid^='app_mobile_simple'],[srcid='lego_tpl'],[srcid='sp_purc_atom'],[srcid='zk_sc_header'],[srcid='med_wz'],[srcid='fw_on_newsite_three'],[srcid='wenda_inquiry'] {display: none !important;}`;
    document.head.appendChild(style);
})();