Simple SS Theme using CSS Variables
此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/454760/1116664/SkittleGamer_TTV%20Theme.js
(function() {
'use strict';
// Your code here...
})();// ==UserScript==
// @name SkittleGamer_TTV Theme
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Simple SS Theme using CSS Variables
// @author You(thanks to My Bro Oltosuper on twitch go follow him)
// @match https://shellshock.io/*
// @match https://biologyclass.club/*
// @grant none
// ==/UserScript==
(function () {
const addScript = () => {
document.head.innerHTML += `
`
}
document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript());
})();