Greasy Fork is available in English.
wen
当前为
// ==UserScript==
// @name css
// @namespace http://tampermonkey.net/
// @version 0.12
// @description wen
// @author You
// @match *:///C:/*/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant wen
// ==/UserScript==
(function() {
'use strict';
javascript: (function () {
if (typeof hasOutline == "undefined") window.hasOutline = false;
document.querySelectorAll("*").forEach(item => {
item.style.outline = window.hasOutline ? "none" : "1px solid #" + (~~(Math.random() * (1 << 24))).toString(16); });
window.hasOutline = !window.hasOutline;})();
// Your code here...
})();