- Go to the applications folder and right click
Slack.app
and click show packaged contents - Now go to '/Contents/Resources/app.asar.unpacked/src/static/'
- Open
ssb-interop.js
file in your code editor. - add the code section as mentioned at the bottom to it and save it
- Now restart the slack app
- Go to
%homepath%\AppData\Local\slack\
- Now go to '\Contents\Resources\app.asar.unpacked\src\static'
- Open
ssb-interop.js
file in your code editor. - add the code section as mentioned at the bottom to it and save it
- Now restart the slack app
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);
}
});
});