Created
October 11, 2017 14:52
-
-
Save chaoslogick/a1ee73fd499f8ad4032bcdc4852abc3a to your computer and use it in GitHub Desktop.
SLACK: dark mode [append to 'app.asar.unpacked/src/static/ssb-interop.js']
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
document.addEventListener('DOMContentLoaded', function() { | |
$.ajax({ | |
url: 'https://cdn.rawgit.com/laCour/slack-night-mode/master/css/raw/black.css', | |
success: function(css) { | |
$("<style></style>").appendTo('head').html(css); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment