Scope Theme - Purple Flame

Scope - Purple Flame

当前为 2023-09-13 提交的版本,查看 最新版本

// ==UserScript==
// @name         Scope Theme - Purple Flame
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Scope - Purple Flame
// @author       Stormii Cloud
// @match        https://shellshock.io/
// @grant        none
// ==/UserScript==

(function () {
    const addScript = () => {
        document.head.innerHTML += `<style>
*{

#maskmiddle {
    background: url('https://i.imgur.com/Y9f06b0.gif') 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());
})();