Greasy Fork is available in English.
针对/精简所有用户体验不爽的网站。
当前为
// ==UserScript== // @name All网页工具箱 // @namespace https://github.com/zhchjiang95 // @version 1.0.0 // @description 针对/精简所有用户体验不爽的网站。 // @author zhchjiang95 <[email protected]> // @include *://* // @match *://* // @grant none // ==/UserScript== (function(){ switch(location.host +location.pathname){ case 'www.baidu.com/s': document.querySelector('#content_right').remove() document.querySelector('#foot').remove() document.querySelector('.result-op.c-container.new-pmd').remove() document.querySelector('#content_left').style.width = '100%' document.querySelector('#s_tab').style.paddingTop = '76px' document.querySelector('#head').style.boxShadow = '0 0 2px #e6e6e6' document.querySelectorAll('.new-pmd.c-container').forEach(v => { v.style.width = '100%' v.style.borderBottom = '1px solid #f1f0f6' v.style.paddingBottom = '14px' }) break; } }())