Created
December 29, 2021 17:19
-
-
Save garvin/dac990c4414310b7ff0ba6b7e3424174 to your computer and use it in GitHub Desktop.
Black bg chat text for baby
This file contains 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 Black bg chat text for baby | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Black bg chat text | |
// @author Gravin | |
// @match https://www.tumblr.com/* | |
// @icon https://www.google.com/s2/favicons?domain=tumblr.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
function addGlobalStyle(css) { | |
var head, style; | |
head = document.getElementsByTagName('head')[0]; | |
if (!head) { return; } | |
style = document.createElement('style'); | |
style.type = 'text/css'; | |
style.innerHTML = css; | |
head.appendChild(style); | |
} | |
addGlobalStyle('.CX_9D { background-color: #000 !important; color: white !important; }'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment