mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 04:13:06 +09:00
5 lines
133 B
JavaScript
5 lines
133 B
JavaScript
onfetch = function(e) {
|
|
if (e.request.url.indexOf("intercept-this") != -1) {
|
|
e.respondWith(new Response("intercepted"));
|
|
}
|
|
}
|