// ==UserScript== // @name 网页变黑白 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 把网页变成黑白色 // @author You // @match https://www.tampermonkey.net/scripts.php // @match *://*jd.com* // @match *://*taobao.com* // @match *://*tmall.com* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; addNewStyle("*{-webkit-filter: grayscale(100%)}") })(); function addNewStyle(newStyle) { console.log("👴 add new style:", newStyle) var styleElement = document.getElementById('styles_js'); if (!styleElement) { styleElement = document.createElement('style'); styleElement.type = 'text/css'; styleElement.id = 'styles_js'; document.getElementsByTagName('head')[0].appendChild(styleElement); } styleElement.appendChild(document.createTextNode(newStyle)); }