Created
February 7, 2018 00:10
-
-
Save Yanrishatum/73335af3adf7a3b58f154fc1cad17945 to your computer and use it in GitHub Desktop.
Dark tweetdeck that is not shitty blue.
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 Darkdeck | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Tweetdeck blue itself. | |
// @author Yanrishatum | |
// @match https://tweetdeck.twitter.com/ | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var s = document.createElement("link"); | |
s.rel = "stylesheet"; | |
s.href = "https://ton.twimg.com/tweetdeck-web/web/css/app-dark.fce7f535df.css"; | |
document.head.appendChild(s); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment