Greasy Fork is available in English.

Google Chrome - Blank New Tab

Use blank page as new tab on Google Chrome.

Verze ze dne 27. 03. 2014. Zobrazit nejnovější verzi.

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