萌娘百科节操模式

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         萌娘百科节操模式
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  让所有图片模糊,防止你查资料时因为不慎看到太涩的图而有损节操。(单击图片,仍然可以查看图片内容。)
// @author       firetree
// @match        https://*.moegirl.org.cn/*
// @match        https://moegirl.uk/*
// @icon         https://img.moegirl.org.cn/favicon.ico
// @grant        none
// @run-at       document-start
// @license      GPL3
// ==/UserScript==

(function() {
    'use strict';

    const style = document.createElement('style')
    style.id = 'userscript-no-image-style'
    style.innerHTML = `
a.image > img {
    filter: blur(10px);
}
`
    document.head.appendChild(style)
})();