清理Chrome新建标签页

为你去除新建标签页中搜索框下面的最热访问页面

  1. // ==UserScript==
  2. // @name CLearChromeNewtab
  3. // @name:zh-CN 清理Chrome新建标签页
  4. // @namespace Kalone
  5. // @version 0.1
  6. // @description Remove most-visited blocks in Chrome newtab page for you.
  7. // @description:zh-CN 为你去除新建标签页中搜索框下面的最热访问页面
  8. // @author Kalone
  9. // @match https://*/_/chrome/newtab*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.getElementById('most-visited').style.display='none';
  16. })();