mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
11 lines
367 B
JavaScript
11 lines
367 B
JavaScript
addEventListener('fetch', function(event) {
|
|
if (event.request.url.indexOf("fail.html") !== -1) {
|
|
event.respondWith(fetch("hello.html", {"integrity": "abc"}));
|
|
} else if (event.request.url.indexOf("fake.html") !== -1) {
|
|
event.respondWith(fetch("hello.html"));
|
|
}
|
|
});
|
|
|
|
addEventListener("activate", function(event) {
|
|
event.waitUntil(clients.claim());
|
|
});
|