summarylogtreecommitdiffstats
path: root/darkify_slack.js
blob: ea7a32e7ce6e9cc8ed147d829e540c5513101a84 (plain)
1
2
3
4
5
6
7
8
document.addEventListener("DOMContentLoaded", function() {
    let s = document.createElement('style');
    s.type = 'text/css';
    s.innerHTML = `
HERE
`;
    document.head.appendChild(s);
});