Greasy Fork

来自缓存

Greasy Fork is available in English.

Glamourdresser去滤镜

去掉Glamourdresser的高斯模糊滤镜。

当前为 2021-10-31 提交的版本,查看 最新版本

// ==UserScript==
// @name         Glamourdresser去滤镜
// @namespace    CheeseEco
// @version      0.2
// @description  去掉Glamourdresser的高斯模糊滤镜。
// @author       CheeseEco
// @match      https://www.glamourdresser.com/*
// @icon         https://www.google.com/s2/favicons?domain=glamourdresser.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var len=document.getElementsByTagName("img").length;
    for(var i=0;i<len;i++){
        document.getElementsByTagName("img")[i].style.cssText += 'filter: none !important';
    }
})();