Skip to content

Instantly share code, notes, and snippets.

@chaoslogick
Created October 11, 2017 14:52
Show Gist options
  • Save chaoslogick/a1ee73fd499f8ad4032bcdc4852abc3a to your computer and use it in GitHub Desktop.
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']
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