Delete 'addons/urejectCR/bg.js'
This commit is contained in:
parent
d0344e5d20
commit
ad49a8a33a
|
@ -1,34 +0,0 @@
|
||||||
let history = {};
|
|
||||||
chrome.webRequest.onResponseStarted.addListener(i => {
|
|
||||||
if ([403, 406, 410, 429, 451, 462].includes(i.statusCode)) {
|
|
||||||
let iFQDN = (new URL(i.url)).hostname;
|
|
||||||
if (['sercxi.eu.org', 'ansero.eu.org', 'sercxi.nnpaefp7pkadbxxkhz2agtbv2a4g5sgo2fbmv3i7czaua354334uqqad.onion', 'ansero.nnpaefp7pkadbxxkhz2agtbv2a4g5sgo2fbmv3i7czaua354334uqqad.onion'].includes(iFQDN)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
let iServer = '?';
|
|
||||||
i.responseHeaders.forEach(x => {
|
|
||||||
if (x.name.toLowerCase() == 'server') {
|
|
||||||
iServer = x.value;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
history[iFQDN] = [i.url, iServer, i.statusCode, (new Date()).toUTCString()];
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}, {
|
|
||||||
urls: ['http://*/*', 'https://*/*'],
|
|
||||||
types: ['main_frame']
|
|
||||||
}, ['responseHeaders']);
|
|
||||||
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
|
|
||||||
if (request && sender) {
|
|
||||||
if (request == 'get') {
|
|
||||||
sendResponse(history);
|
|
||||||
}
|
|
||||||
if (request == 'clear') {
|
|
||||||
history = {};
|
|
||||||
sendResponse(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
chrome.browserAction.onClicked.addListener(() => {
|
|
||||||
chrome.runtime.openOptionsPage();
|
|
||||||
});
|
|
Loading…
Reference in New Issue