Greasy Fork

Greasy Fork is available in English.

手机百度展开

避免展开全文跳转百度app

当前为 2021-01-21 提交的版本,查看 最新版本

// ==UserScript==
// @name         手机百度展开
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  避免展开全文跳转百度app
// @author       You
// @match        https://*.baidu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
$('.mainContent')[0].style.height='20000px'
window.onload=function(){
    $('.layer-item')[0].remove()
    $('.layer-itemTitle')[0].innerHTML='百度必死'
    $('.layer-capsule').remove()}
    // Your code here...
})();