-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
56 lines (50 loc) · 1.14 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"description": "Allows Navigation scripting and testing for all browsers with CasperJS",
"manifest_version": 2,
"name": "phantomify",
"version": "1.0",
"icons": {
"48": "icons/ectoplasm-48.png",
"60": "icons/ectoplasm-60.png",
"128": "icons/ectoplasm-128.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "45.0"
}
},
"permissions": [
"activeTab",
"background",
"contextMenus",
"cookies",
"debugger",
"downloads",
"http://*/*",
"https://*/*",
"processes",
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>",
"*://*/*"
],
"browser_action": {
"default_icon": "icons/ectoplasm-32.png",
"default_title": "ectoplasm",
"default_popup": "popup/popup.html"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["clientScript.js"],
"run_at": "document_end",
"all_frames": true
}]
}