linux.do去模糊

去模糊

  1. // ==UserScript==
  2. // @name linux.do去模糊
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0.3
  5. // @description 去模糊
  6. // @author ddatsh
  7. // @match https://linux.do/*
  8. // @grant GM_addStyle
  9. // @license MIT
  10. // @icon https://www.google.com/s2/favicons?domain=linux.do
  11. // ==/UserScript==
  12.  
  13. GM_addStyle ( `
  14. .spoiler-blurred {
  15. filter: none !important;
  16. }
  17. .spoiler-blurred img{
  18. filter: none !important;
  19. }
  20. ` );