Skip to content

Commit 788cb7d

Browse files
authored
Merge pull request #163 from code-mancers/Remove-ununeeded-permissions
refactor: Remove un-needed permissions from manifest
2 parents f5682d7 + da68c64 commit 788cb7d

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

app/manifest.json

+18-12
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,39 @@
44
"version": "0.3.1",
55
"manifest_version": 2,
66
"icons": {
7-
"16":"images/icon-16.png",
8-
"48":"images/icon-48.png",
9-
"128":"images/icon-128.png"
7+
"16": "images/icon-16.png",
8+
"48": "images/icon-48.png",
9+
"128": "images/icon-128.png"
1010
},
1111
"background": {
12-
"scripts": ["js/background.js"]
12+
"scripts": [
13+
"js/background.js"
14+
]
1315
},
1416
"content_scripts": [
1517
{
16-
"matches": ["http://*/*", "https://*/*"],
17-
"js": ["js/content.js"],
18+
"matches": [
19+
"http://*/*",
20+
"https://*/*"
21+
],
22+
"js": [
23+
"js/content.js"
24+
],
1825
"run_at": "document_start"
1926
}
2027
],
21-
"web_accessible_resources": ["lib/nise.min.js"],
28+
"web_accessible_resources": [
29+
"lib/nise.min.js"
30+
],
2231
"browser_action": {
23-
"default_title":"Interceptor",
32+
"default_title": "Interceptor",
2433
"default_popup": "index.html",
2534
"default_icon": "images/icon.png"
2635
},
2736
"permissions": [
2837
"webRequest",
2938
"tabs",
30-
"webRequestBlocking",
3139
"http://*/*",
32-
"https://*/*",
33-
"storage",
34-
"webNavigation"
40+
"https://*/*"
3541
]
3642
}

0 commit comments

Comments
 (0)