summaryrefslogtreecommitdiff
path: root/inject-css.js
blob: c54c80ebfd858a1caceedd5fb496997689258c7e (plain)
1
2
3
4
5
6
7
8
browser.storage.sync.get("githubCSS").then((data) => {
    if (data.githubCSS) {
        let style = document.createElement("style");
        style.textContent = data.githubCSS;
        document.head.appendChild(style);
        console.log("Injected custom GitHub CSS.");
    }
});