// ==UserScript== // @name 手机百度展开 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 避免展开全文跳转百度app // @author You // @match https://*.baidu.com/* // @grant none // @downloadURL 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... })();