Skip to content

Instantly share code, notes, and snippets.

@Yanrishatum
Created February 7, 2018 00:10
Show Gist options
  • Save Yanrishatum/73335af3adf7a3b58f154fc1cad17945 to your computer and use it in GitHub Desktop.
Save Yanrishatum/73335af3adf7a3b58f154fc1cad17945 to your computer and use it in GitHub Desktop.
Dark tweetdeck that is not shitty blue.
// ==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