anti-grayscale

灰你妈的逼

目前為 2022-12-01 提交的版本,檢視 最新版本

// ==UserScript==
// @name         anti-grayscale
// @version      0.2
// @description  灰你妈的逼
// @author       cybartist
// @match        http*://*/*
// @run-at       document-start
// @grant        GM_addStyle
// @license      MIT
// @namespace https://greasyfork.org/users/990596
// ==/UserScript==
(function () {
  function anti() {
    GM_addStyle(
      "* {filter:none !important;}"
    );
  }
  
  
  window.addEventListener('load', function() {
    anti();
  }, false);
  
  anti();
})();