Google Chrome - Blank New Tab

Use blank page as new tab on Google Chrome.

目前为 2014-03-27 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @id chrome-newtab-blank@loucypher
  3. // @name Google Chrome - Blank New Tab
  4. // @namespace https://github.com/LouCypher/userscripts
  5. // @description Use blank page as new tab on Google Chrome.
  6. // @version 1.0pre
  7. // @author LouCypher
  8. // @license WTFPL
  9. // @contributionURL http://loucypher.github.io/userscripts/donate.html?Chrome+New+Tab+Blank
  10. // @resource CHANGELOG https://raw.github.com/LouCypher/userscripts/master/tampermonkey/blank-new-tab/CHANGELOG.txt
  11. // @resource LICENSE https://raw.github.com/LouCypher/userscripts/master/licenses/WTFPL/LICENSE.txt
  12. // @include /^https?://www\.google\.[a-z\.]+/\_/chrome/newtab.*/
  13. // @run-at document-start
  14. // @grant GM_addStyle
  15. // ==/UserScript==/* This program is free software. It comes without any warranty, to
  16. * the extent permitted by applicable law. You can redistribute it
  17. * and/or modify it under the terms of the Do What The Fuck You Want
  18. * To Public License, Version 2, as published by Sam Hocevar. See
  19. * http://www.wtfpl.net/ for more details. */
  20.  
  21.  
  22.  
  23. GM_addStyle("html{display:none}");
  24. location.replace("about:blank");