-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
64 lines (55 loc) · 1.71 KB
/
background.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
function isThisRequestNew(reqId)
{
if (sessionStorage.getItem(reqId))
{
return false;
}
else
{
return true;
}
}
//var monitoredUrls = ['wikipedia.org', 'mediawiki.org', 'wiktionary.org'];
// for debugging only
var debug = false;
var extensionInfo = browser.management.getSelf();
extensionInfo.then(gotSelf);
function gotSelf(info) {
extensionInfo = info;
debug = (info.installType == 'development');
}
/* This function logs debugging info to the browser console, if the extension is installed as a temporary extension.
Otherwise (normal case) nothing is logged. */
function WVSLog(logmsg)
{
if (debug)
{
console.log('Wikipedia Vector Skin: ' + logmsg);
}
}
browser.webRequest.onBeforeRequest.addListener(
function(details)
{
var newUrl = new URL(details.url);
var boolRequestNew = isThisRequestNew(details.requestId);
if ((details.type == 'main_frame'))
{
WVSLog('requestId: '+details.requestId);
WVSLog('requested URL: '+ newUrl.href);
if (boolRequestNew)
{
sessionStorage.setItem(details.requestId, true);
if (!newUrl.search.includes("useskin=Vector"))
{
let params = new URLSearchParams(newUrl.search);
params.append('useskin', 'monobook');
newUrl.search = params;
WVSLog('new URL: '+ newUrl.href);
return { redirectUrl: newUrl.href };
}
}
}
},
{ urls: ["*://*.mediawiki.org/*", "*://*.wikipedia.org/*", "*://*.wiktionary.org/*", "*://*.wikiquote.org/*", "*://*.wikiversity.org/*", "*://*.wikivoyage.org/*", "*://*.wikimedia.org/*", "*://*.wikidata.org/*", "*://*.wikinews.org/*", "*://*.wikisource.org/*", "*://*.wikibooks.org/*"] },
["blocking"]
);