Fix blurry Google Docs

Fix blurry Google Docs rendering on Firefox when privacy.resistFingerprinting is turned on.

  1. // ==UserScript==
  2. // @name Fix blurry Google Docs
  3. // @description Fix blurry Google Docs rendering on Firefox when privacy.resistFingerprinting is turned on.
  4. // @version 1
  5. // @include *://docs.google.com/*
  6. // @grant none
  7. // @run-at document-start
  8. // @license WTFPL
  9. // @namespace https://gf.qytechs.cn/users/6660
  10. // ==/UserScript==
  11.  
  12. if (!window.location.search.includes("mode=html")) {
  13. if (window.location.search.startsWith('?')) {
  14. window.location.search += '&mode=html'
  15. } else {
  16. window.location.search += '?mode=html'
  17. }
  18. }
  19.  

QingJ © 2025

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