Last active
November 15, 2024 03:30
-
-
Save Seele0oO/b9d92ad4114c1dda5e7a493b93c155e1 to your computer and use it in GitHub Desktop.
time.is_dark
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name time.is black style | |
// @namespace https://gist.github.com/ | |
// @version 20241115.11 | |
// @description black ver time.is, idea from t.me/GBTBBR | |
// @author AlPt | |
// @match https://time.is/ | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=time.is | |
// @grant none | |
// @license MIT | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.getElementById('clock0_bg').style.color = 'white'; | |
document.body.style.backgroundColor = 'black'; | |
document.getElementById('mainwrapper').style.backgroundColor = 'black'; | |
document.getElementById('top').style.display='none'; | |
document.getElementById('clock0_bg').click(); | |
})(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment