Skip to content

Instantly share code, notes, and snippets.

@sayham-sjb
Last active February 20, 2018 02:50
Show Gist options
  • Save sayham-sjb/fd6cb148429d4eb20145ad60a7115147 to your computer and use it in GitHub Desktop.
Save sayham-sjb/fd6cb148429d4eb20145ad60a7115147 to your computer and use it in GitHub Desktop.
SlackThemeChange #js
//To modify slack theme, append the following to
///usr/lib/slack/resources/app.asar.unpacked/src/static/ssb-interop.js
document.addEventListener('DOMContentLoaded', function() {
$.ajax({
url: 'Enter your CSS url',
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