萌娘百科节操模式

让所有图片模糊,防止你查资料时因为不慎看到太涩的图而有损节操。(单击图片,仍然可以查看图片内容。)

  1. // ==UserScript==
  2. // @name 萌娘百科节操模式
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 让所有图片模糊,防止你查资料时因为不慎看到太涩的图而有损节操。(单击图片,仍然可以查看图片内容。)
  6. // @author firetree
  7. // @match https://*.moegirl.org.cn/*
  8. // @match https://moegirl.uk/*
  9. // @icon https://img.moegirl.org.cn/favicon.ico
  10. // @grant none
  11. // @run-at document-start
  12. // @license GPL3
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. const style = document.createElement('style')
  19. style.id = 'userscript-no-image-style'
  20. style.innerHTML = `
  21. a.image > img {
  22. filter: blur(10px);
  23. }
  24. `
  25. document.head.appendChild(style)
  26. })();

QingJ © 2025

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