forked from threejs/three-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (40 loc) · 813 Bytes
/
manifest.json
File metadata and controls
40 lines (40 loc) · 813 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": "Three.js Developer Tools",
"version": "0.4.0",
"description": "Developer tools for 3D library three.js.",
"devtools_page": "src/extension/devtools.html",
"background": {
"page": "src/extension/background.html"
},
"icons": {
"128": "assets/icon_128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"src/extension/contentScript.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"webNavigation",
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
"src/content/*.js"
],
"manifest_version": 2,
"author": "Jordan Santell",
"browser_specific_settings": {
"gecko": {
"id": "three-devtools@jsantell.com"
}
}
}