您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name Test // @namespace * // @version 0.2 // @description try to take over the world! // @author You // @match htt*://*/* // @grant none // ==/UserScript== (function() { 'use strict'; var node = document.createElement("style"); node.innerText = "img{filter:blur(2px);}"; document.body.appendChild(node); var node = document.createElement("style"); node.innerText = "img{filter:blur(2px);}"; document.body.appendChild(node); var px = document.createElement("div") px.class = "fu"; px.style = "position:absolute; top:398px; left:345px;height:2px;width:2px;background-color:blue;border-radious:50%"; document.body.appendChild(px); var rgb = false; var red, green, blue; setInterval(function() { if(rgb <= 16777216){ red = (rgb >> 16) & 0xFF; green = (rgb >> 8) & 0xFF; blue = (rgb) & 0xFF; rgb+=30; }else{ rgb=0; } px.style["background-color"]="rgb("+red+", "+green+", "+blue+")"; }, 1) })();