-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (36 loc) · 960 Bytes
/
manifest.json
File metadata and controls
40 lines (36 loc) · 960 Bytes
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
{
"name": "Fengari",
"version": "0.0.1",
"description": "Extends the Developer Tools, adding tools for debugging and profiling Fengari applications.",
"devtools_page": "devtools.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"manifest_version": 2,
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
],
"icons": {
"16": "panel/images/logo.png",
"48": "panel/images/logo.png",
"128": "panel/images/logo.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_start"
},
{
"matches": ["<all_urls>"],
"js": ["content-end.js"],
"run_at": "document_end"
}
]
}