Skip to content

Commit c283863

Browse files
Update userscript to avoid CORS errors
1 parent 91908aa commit c283863

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

userscript.js

+21-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// @author pikapower9080
77
// @match https://*.instructure.com/*
88
// @icon https://www.google.com/s2/favicons?sz=64&domain=canvas.instructure.com
9-
// @grant none
9+
// @grant GM_xmlhttpRequest
1010
// @noframes
1111
// ==/UserScript==
1212

@@ -15,13 +15,27 @@ let cache = sessionStorage.getItem("qm-cache")
1515

1616
if (!cache) {
1717
console.log("No cache found, loading quick menu from url: " + fetchUrl)
18-
fetch(fetchUrl).then((res) => {
19-
res.text().then((code) => {
20-
sessionStorage.setItem("qm-cache", code)
21-
console.log("Canvas quick menu is now cached in session storage")
22-
new Function(code)()
18+
if (GM_xmlhttpRequest) {
19+
GM_xmlhttpRequest({
20+
method: "GET",
21+
url: fetchUrl,
22+
onload: function(response) {
23+
const code = response.responseText
24+
sessionStorage.setItem("qm-cache", code)
25+
console.log("Canvas quick menu is now cached in session storage")
26+
new Function(code)()
27+
}
28+
});
29+
} else {
30+
console.warn("Canvas Quick Menu couldn't use the GM_xmlhttpRequest method, falling back to fetch. Exepct CORS errors.")
31+
fetch(fetchUrl).then((res) => {
32+
res.text().then((code) => {
33+
sessionStorage.setItem("qm-cache", code)
34+
console.log("Canvas quick menu is now cached in session storage")
35+
new Function(code)()
36+
})
2337
})
24-
})
38+
}
2539
} else {
2640
console.log("Loading quick menu from session cache")
2741
new Function(cache)()

0 commit comments

Comments
 (0)