手机版百度优化

优化手机百度网址的使用体验,去除跳转、app引导等内容。

// ==UserScript==
// @name         手机版百度优化
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  优化手机百度网址的使用体验,去除跳转、app引导等内容。
// @author       You
// @match        https://baijiahao.baidu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var timer = setInterval(function(){
        var $continue_btn = $(".layer-itemBtn.normal")
        var $app = $(".headDeflectorContainer")
        var $ctn = $(".newUnfoldIcon")
        var $pop = $(".popup-lead-cancel")
        if(!!$continue_btn) {
            $continue_btn.click();
        }
        if(!!$app) {
            $app.remove();
        }
        if(!!$ctn) {
            $ctn.click();
        }
        if(!!$pop) {
            $pop.click();
        }

    }, 200)


    // Your code here...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址