Convert all images on a webpage to black and white
当前为
// ==UserScript==
// @name 默哀模式
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Convert all images on a webpage to black and white
// @author YourName
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Apply grayscale filter to all images
const style = document.createElement('style');
style.innerHTML = `
img {
filter: grayscale(100%) !important;
}
`;
document.head.appendChild(style);
})();