aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--browser/GMPolyfill.js1
-rw-r--r--src/utils/constants.ts4
2 files changed, 5 insertions, 0 deletions
diff --git a/browser/GMPolyfill.js b/browser/GMPolyfill.js
index 3e0606d..6f05ca0 100644
--- a/browser/GMPolyfill.js
+++ b/browser/GMPolyfill.js
@@ -92,6 +92,7 @@ function GM_fetch(url, opt) {
resp.arrayBuffer = () => blobTo("arrayBuffer", blob);
resp.text = () => blobTo("text", blob);
resp.json = async () => JSON.parse(await blobTo("text", blob));
+ resp.headers = new Headers(parseHeaders(resp.responseHeaders));
resolve(resp);
};
options.ontimeout = () => reject("fetch timeout");
diff --git a/src/utils/constants.ts b/src/utils/constants.ts
index 0805872..d5faa43 100644
--- a/src/utils/constants.ts
+++ b/src/utils/constants.ts
@@ -201,5 +201,9 @@ export const Devs = /* #__PURE__*/ Object.freeze({
lewisakura: {
name: "lewisakura",
id: 96269247411400704n
+ },
+ cloudburst: {
+ name: "cloudburst",
+ id: 892128204150685769n
}
});