-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
58 lines (58 loc) · 1.32 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
57
58
{
"manifest_version": 2,
"name": "Shopify Tools",
"description": "A tool to extend and tweak the Shopify admin and apps to make your life easier",
"version": "0.3.3",
"permissions": [
"tabs",
"https://*.myshopify.com/admin*",
"https://*.myshopify.io/admin*",
"storage"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"browser_action": {
"default_title": "Click for actions",
"default_icon": "/images/icon-40.png",
"default_popup": "extension.html"
},
"background": {
"scripts": ["/js/background.js"]
},
"content_scripts": [
{
"matches": [
"https://*.myshopify.com/admin/*",
"https://*.myshopify.io/admin*"
],
"css": ["/css/all-admin.css"],
"js": [
"/js/libs/jquery-3.2.1.min.js",
"/js/libs/moment.min.js"
]
}
],
"commands": {
"title-toggle": {
"suggested_key": {
"default": "MacCtrl+Period"
},
"description": "Toggle Title Bar"
},
"sidebar-toggle": {
"suggested_key": {
"default": "MacCtrl+Comma"
},
"description": "Toggle Sidebar"
}
},
"icons": {
"16": "/images/icon-16.png",
"30": "/images/icon-30.png",
"40": "/images/icon-40.png",
"80": "/images/icon-80.png",
"128": "/images/icon-128.png"
}
}