baidu

精简百度搜索首页

  1. // ==UserScript==
  2. // @name baidu
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 精简百度搜索首页
  6. // @author xpc
  7. // @match https://www.baidu.com/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15. $('#u_sp, #s_top_wrap, #s_upfunc_menus,#bottom_container, #u1, .qrcodeCon, #ftCon').hide();
  16. })();