-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
33 lines (31 loc) · 914 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
31
32
33
{
"manifest_version" : 2,
"name" : "Magento Developmer Tools",
"author" : "Rick Buczynski",
"description" : "This extension provides client-side tools for managing your Magento deployments.",
"version" : "1.0",
"options_page" : "options/index.html",
"background" : {
"scripts" : ["lib/tab-events.js"],
"persistent" : false
},
"browser_action" : {
"default_icon" : {
"19" : "assets/icon-toolbar-19.png",
"38" : "assets/icon-toolbar-38.png"
},
"default_title" : "Magento Developer Tools"
},
"permissions" : [
"*://*/*",
"webNavigation",
"tabs",
"storage",
"notifications"
],
"web_accessible_resources" : [
"assets/*.png",
"assets/*.css",
"lib/*.js"
]
}