-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmanifest.json
30 lines (30 loc) · 927 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name" : "Local Sheriff",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "62.0"
}
},
"version" : "0.6",
"description" : "Local sheriff is a reconnaissance tool in your browser for your data.",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"icons": {
"128": "icons/sheriff.png"
},
"browser_action": {
"default_icon": "icons/sheriff-128x128.png"
},
"permissions": [ "http://*/*", "https://*/*","tabs", "activeTab", "webRequest", "webRequestBlocking","unlimitedStorage", "webNavigation", "<all_urls>"],
"background": {
"scripts": ["./dist/background.bundle.js"]
},
"content_scripts": [{
"matches" : ["http://*/*", "https://*/*"],
"match_about_blank": true,
"js": ["./dist/content-script.bundle.js"],
"all_frames": true,
"run_at": "document_end"
}],
"manifest_version": 2
}