Remove API files, wrong way

This commit is contained in:
flying-scorpio 2020-01-05 10:44:30 +01:00
parent e7979f893c
commit b887b6cbd6
2 changed files with 0 additions and 23 deletions

View file

@ -1,8 +0,0 @@
function logURL(requestDetails) {
console.log("Loading: " + requestDetails.url);
}
browser.webRequest.onBeforeRequest.addListener(
logURL,
{urls: ["<all_urls>"]}
);

View file

@ -1,15 +0,0 @@
{
"description": "Demonstrating webRequests",
"manifest_version": 2,
"name": "webRequest-demo",
"version": "1.0",
"permissions": [
"webRequest",
"<all_urls>"
],
"background": {
"scripts": ["background.js"]
}
}