Greasy Fork is available in English.

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