mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-22 11:33:03 +00:00
24 lines
788 B
JavaScript
24 lines
788 B
JavaScript
onfetch = function(e) {
|
|
if (e.request.url.indexOf("Referer") >= 0) {
|
|
// Silently rewrite the referrer so the referrer test passes since the
|
|
// document/worker isn't aware of this service worker.
|
|
var url = e.request.url.substring(0, e.request.url.indexOf('?'));
|
|
url += '?headers=' + ({ 'Referer': self.location.href }).toSource();
|
|
|
|
e.respondWith(e.request.text().then(function(text) {
|
|
var body = text === '' ? undefined : text;
|
|
return fetch(url, {
|
|
method: e.request.method,
|
|
headers: e.request.headers,
|
|
body: body,
|
|
mode: e.request.mode,
|
|
credentials: e.request.credentials,
|
|
redirect: e.request.redirect,
|
|
cache: e.request.cache,
|
|
});
|
|
}));
|
|
return;
|
|
}
|
|
e.respondWith(fetch(e.request));
|
|
};
|