NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name NOGRAYSCALE_CKZIU // @namespace http://tampermonkey.net/ // @version ver.1 // @description usuniecie znacznika grayscale na stronie ckziu jaworzno // @author piotrboronczyk // @match http://www.ckziu.jaworzno.pl/* // @match https://www.ckziu.jaworzno.pl/* // @grant none // @licence MIT // ==/UserScript== (function() { 'use strict'; $( document ).ready(function() { $('body').css("webkit-filter", 'grayscale(0%)'); $('body').css("filter", 'grayscale(0%)'); $('body').css("moz-filter", 'grayscale(0%)'); $('body').css("ms-filter", 'grayscale(0%)'); $('body').css("o-filter", 'grayscale(0%)'); }); })();