您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
make the world transition!
- // ==UserScript==
- // @name TransALot
- // @namespace http://tampermonkey.net/
- // @version v1.1.2
- // @description make the world transition!
- // @author PCwqyy
- // @match http://*/*
- // @match https://*/*
- // @icon https://cdn.luogu.com.cn/upload/usericon/567385.png
- // @grant none
- // @license MIT
- // ==/UserScript==
- (function() {
- var Body114=document.getElementsByTagName("body");
- var Id=setInterval(()=>{
- if(Body114.length!=0)
- {
- var Style114=document.createElement('style');
- Style114.textContent="*{transition: 2s;}a{transition: 0.5s;}span{transition: 0s;}";
- Body114[0].appendChild(Style114);
- clearInterval(Id);
- }
- },10);
- })();