We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a10aae5 commit 6bb1a46Copy full SHA for 6bb1a46
src/background-firefox.ts
@@ -26,7 +26,7 @@ function detectJSON(event: chrome.webRequest.WebResponseHeadersDetails) {
26
if (typeof browser !== "undefined" && "filterResponseData" in browser.webRequest) {
27
// We need to change the content type to text/plain to prevent Firefox
28
// from using its built-in JSON viewer.
29
- header.value = "text/plain";
+ header.value = "text/plain; charset=UTF-8";
30
}
31
32
src/viewer.css
@@ -1,3 +1,5 @@
1
+@charset "UTF-8";
2
+
3
body {
4
font-family: sans-serif;
5
margin: 0;
0 commit comments