Revert to Google's Old 2012-2015 Favicon

Replaces New 2015 Google Search Favicon in Browser Tabs, Address Bar, Bookmarks

  1. // ==UserScript==
  2. // @name Revert to Google's Old 2012-2015 Favicon
  3. // @version 3.25
  4. // @author R. Schneider
  5. // @namespace https://gf.qytechs.cn/en/users/15044-r-schneider
  6. // @description Replaces New 2015 Google Search Favicon in Browser Tabs, Address Bar, Bookmarks
  7. // @icon https://gf.qytechs.cn/system/screenshots/screenshots/000/002/575/original/Google_Favicon_%282012_-_2015%29.png?1447968978
  8.  
  9. // @include http*://www.google.*
  10. // @include http*://webcache.googleusercontent.*
  11. // @include http*://images.google.*
  12. // @include http*://google.com/photos*
  13. // @include http*://books.google.*
  14. // @include http*://support.google.*
  15. // @include http*://accounts.google.*
  16. // @include http*://myaccount.google.*
  17. // @include http*://aboutme.google.*
  18. // @include http*://googleblog.blogspot.*
  19. // @include http*://cse.google.*
  20.  
  21. // @exclude http*://www.google.com/cloudprint*
  22. // @exclude http*://www.google.com/calendar*
  23. // @exclude http*://www.google.com/intl/*/drive*
  24. // @exclude http*://www.google.com/earth*
  25. // @exclude http*://www.google.com/finance*
  26. // @exclude http*://www.google.com/maps*
  27. // @exclude http*://www.google.com/voice*
  28. // @grant none
  29. // @support rschneider@engineer.com
  30. // @license CC BY-NC 4.0 License (Creative Commons Attribution, NonCommercial 4.0 International) - http://creativecommons.org/licenses/by-nc/4.0/
  31. // ==/UserScript==
  32.  
  33. var head = document.getElementsByTagName('head')[0];
  34. var icon = document.createElement('link');
  35.  
  36. icon.setAttribute('type', 'image/x-icon');
  37. icon.setAttribute('rel', 'icon');
  38.  
  39. 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');
  40.  
  41. head.appendChild(icon);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址