remove asking about webRequestBlocking

This commit is contained in:
Sebastian 2022-04-11 17:17:04 -03:00
parent df81496b57
commit 1ae4a44a3a
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1
2 changed files with 2 additions and 3 deletions

View File

@ -23,7 +23,6 @@
], ],
"optional_permissions": [ "optional_permissions": [
"webRequest", "webRequest",
"webRequestBlocking",
"http://*/*", "http://*/*",
"https://*/*" "https://*/*"
], ],
@ -38,4 +37,4 @@
"page": "static/background.html", "page": "static/background.html",
"persistent": true "persistent": true
} }
} }

View File

@ -15,7 +15,7 @@
*/ */
const perms = { const perms = {
permissions: ["webRequest", "webRequestBlocking"], permissions: ["webRequest"],
origins: ["http://*/*", "https://*/*"], origins: ["http://*/*", "https://*/*"],
} }
export const getReadRequestPermissions = (): typeof perms => perms export const getReadRequestPermissions = (): typeof perms => perms