您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Same Scope That Moon Uses
当前为
- // ==UserScript==
- // @name Scope Theme - Moon
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description Same Scope That Moon Uses
- // @author Stormii Cloud
- // @match https://shellshock.io/
- // @grant none
- // ==/UserScript==
- (function () {
- const addScript = () => {
- document.head.innerHTML += `<style>
- *{
- #maskmiddle {
- background: url('https://i.imgur.com/HKDotWT.jpg') center center no-repeat;
- background-size: contain;
- width: 100vh;
- height: 100vh;
- }
- #maskleft, #maskright {
- background: black;
- flex: 1;
- }
- </style>`
- }
- document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript());
- })();