您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Use blank page as new tab on Google Chrome.
当前为
- // ==UserScript==
- // @id chrome-newtab-blank@loucypher
- // @name Google Chrome - Blank New Tab
- // @namespace https://github.com/LouCypher/userscripts
- // @description Use blank page as new tab on Google Chrome.
- // @version 1.0pre
- // @author LouCypher
- // @license WTFPL
- // @contributionURL http://loucypher.github.io/userscripts/donate.html?Chrome+New+Tab+Blank
- // @resource CHANGELOG https://raw.github.com/LouCypher/userscripts/master/tampermonkey/blank-new-tab/CHANGELOG.txt
- // @resource LICENSE https://raw.github.com/LouCypher/userscripts/master/licenses/WTFPL/LICENSE.txt
- // @include /^https?://www\.google\.[a-z\.]+/\_/chrome/newtab.*/
- // @run-at document-start
- // @grant GM_addStyle
- // ==/UserScript==/* This program is free software. It comes without any warranty, to
- * the extent permitted by applicable law. You can redistribute it
- * and/or modify it under the terms of the Do What The Fuck You Want
- * To Public License, Version 2, as published by Sam Hocevar. See
- * http://www.wtfpl.net/ for more details. */
- GM_addStyle("html{display:none}");
- location.replace("about:blank");