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": [
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
],

View File

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