您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replaces New 2015 Google Search Favicon in: Tabs / Address Bar / Menu & Toolbar Bookmarks
当前为
// ==UserScript== // @name Revert to Google's 2013-2015 Favicon // @version 3.08 // @author R. Schneider // @namespace https://greasyfork.org/en/users/15044-r-schneider // @description Replaces New 2015 Google Search Favicon in: Tabs / Address Bar / Menu & Toolbar Bookmarks // @include https://www.google.* // @include http://www.google.* // @include https://images.google.* // @include http://images.google.* // @include https://accounts.google.* // @include http://accounts.google.* // @include https://myaccount.google.* // @include http://myaccount.google.* // @include https://books.google.* // @include http://books.google.* // @include https://google.com/photos* // @include http://google.com/photos* // @exclude https://www.google.com/cloudprint* // @exclude http://www.google.com/cloudprint* // @exclude https://www.google.com/calendar* // @exclude http://www.google.com/calendar* // @exclude https://www.google.com/intl/*/drive* // @exclude http://www.google.com/intl/*/drive* // @exclude https://www.google.com/earth* // @exclude http://www.google.com/earth* // @exclude https://www.google.com/finance* // @exclude http://www.google.com/finance* // @exclude https://www.google.com/maps* // @exclude http://www.google.com/maps* // @exclude https://www.google.com/voice* // @exclude http://www.google.com/voice* // @grant none // @support [email protected] // @license <a href="http://creativecommons.org/licenses/by-nc/4.0/">Creative Commons Attribution, NonCommercial 4.0 International License</a> // ==/UserScript== var head = document.getElementsByTagName('head')[0]; var icon = document.createElement('link'); icon.setAttribute('type', 'image/x-icon'); icon.setAttribute('rel', 'shortcut icon'); icon.setAttribute('href', 'data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAArdJREFUOI1Nks1rHWUUxn/nvDPjvR1iEj+wmEgs1k3RglFaFSnxqyLoUumqIAouClX8B1yZtbvixoXURSWKH1BwIVrIosVWrS6CYqk1Vmul1Zh7M/fOzPs+Lua29SwP5/mdw/Mce/19vX3mAs/1fLQQk0wpBjMjc9iqhYDcoY7gBkUeYnDTKPUuPLjAZ7ZvWeu5hvOyEJXaYGZIoqrhzlnDDYZjmCmNUS3+3hIhZJEUQ2PlxaxgOJ9uiBWTLA9w4JGcuhV77gns3Zlx/LuGE2stV7eQUhtEiAWDOY+y1DVQ5thgJA49XXDXrcbR1YY3PxyzfiWxrYATa5GbApaEUAxRIbkhl4SDNVHMls7++zN+WE/MlEYb4YNTDc/szpm7xanbhJsZCBTd+V8ZECUyNx66O3B1KOpWDCpx/nJiMBLBO48kw8xwADMjSQSHagzvfFnz7AMZBx/L2T7tPHpv4MgXNaNG+ARg1i29DjAz2gT9Aj4+3fDG0YrpvnHs8DbOric+/77ltiln3Cbcu3kQLmlyfoe8Ftvqj5FPvmkoMnh+MWPH7c5mJXI3UhJIneqJtwa6DjGoW9i/O2PnHc6lf0S/gAMP51QNvPZexZ8bIg8Q1XnmnSFdc7OCl5dyXtybc+xkw6dnGt79qubgkYrg8MpSQVWLEGxywQTg7sQE/UK8sKfg+LctZ3+J9Atj+4yz9ntk5VTTxZrAENdcdCykCURNhNPnIy8t5Ty+K6Nqugh3zTuLOwIffd2QOQgTEpgne2p5oCiLTgpNMt3cw159suC+eefXK+LyvwkHTv4cWf0pUvZMbSvzEKKTgu1b1m+5hnMyj6YUYhJbNcyWxlSvi+qvTTFqYKpnxCTMQzSl0Fh50RcXWKmtPBfclcxjcGO2NMatuLSR+GOj+8zp/g1xcFdt5bnFBVb+A5/wdpTKPeYpAAAAAElFTkSuQmCC'); head.appendChild(icon);