File tree 1 file changed +21
-7
lines changed
1 file changed +21
-7
lines changed Original file line number Diff line number Diff line change 6
6
// @author pikapower9080
7
7
// @match https://*.instructure.com/*
8
8
// @icon https://www.google.com/s2/favicons?sz=64&domain=canvas.instructure.com
9
- // @grant none
9
+ // @grant GM_xmlhttpRequest
10
10
// @noframes
11
11
// ==/UserScript==
12
12
@@ -15,13 +15,27 @@ let cache = sessionStorage.getItem("qm-cache")
15
15
16
16
if ( ! cache ) {
17
17
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
+ } )
23
37
} )
24
- } )
38
+ }
25
39
} else {
26
40
console . log ( "Loading quick menu from session cache" )
27
41
new Function ( cache ) ( )
You can’t perform that action at this time.
0 commit comments