SkittleGamer_TTV Theme

Simple SS Theme using CSS Variables

このスクリプトは単体で利用できません。右のようなメタデータを含むスクリプトから、ライブラリとして読み込まれます: // @require https://update.greasyfork.org/scripts/454760/1116664/SkittleGamer_TTV%20Theme.js

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
作者
SkittleGamer_YT
バージョン
0.1
作成日
2022/11/13
更新日
2022/11/13
ライセンス
不明

(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());
})();