14 lines
342 B
JavaScript
14 lines
342 B
JavaScript
/* Blocks requests to Github / Github Assets containing Copilot URIs */
|
|
|
|
browser.webRequest.onBeforeRequest.addListener(
|
|
function() {
|
|
return {cancel: true};
|
|
},
|
|
{
|
|
urls: [
|
|
"*://github.com/github-copilot/*",
|
|
"*://github.githubassets.com/assets/*copilot*"
|
|
]
|
|
},
|
|
["blocking"]
|
|
);
|