diff options
Diffstat (limited to 'browser/background.js')
-rw-r--r-- | browser/background.js | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/browser/background.js b/browser/background.js index 872134b..b79c94e 100644 --- a/browser/background.js +++ b/browser/background.js @@ -1 +1,24 @@ -// could use this in the future +if (typeof browser === "undefined") { + var browser = chrome; +} + +browser.webRequest.onHeadersReceived.addListener(({ responseHeaders, url }) => { + const cspIdx = responseHeaders.findIndex(h => h.name === "content-security-policy"); + if (cspIdx !== -1) + responseHeaders.splice(cspIdx, 1); + + if (url.endsWith(".css")) { + const contentType = responseHeaders.find(h => h.name === "content-type"); + if (contentType) + contentType.value = "text/css"; + else + responseHeaders.push({ + name: "content-type", + value: "text/json" + }); + } + + return { + responseHeaders + }; +}, { urls: ["*://*.discord.com/*"] }, ["blocking", "responseHeaders"]); |