-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
85 lines (83 loc) · 2.11 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "Slate",
"description": "Easily collect and share images from anywhere on the web.",
"version": "2.04",
"permissions": [
"contextMenus",
"tabs",
"activeTab",
"storage",
"https://slate.host/",
"<all_urls>",
"unlimitedStorage"
],
"background": {
"scripts": ["background.js"]
},
"web_accessible_resources": [
"content-script.js",
"app/pages/app.html",
"app/pages/",
"app/pages/product-tour.js",
"app/pages/product-tour.html",
"app/common/styles/constants.css",
"app/common/styles/global.css",
"app/common/styles/product-tour.css",
"app/common/svg",
"background.js",
"app/index.js",
"app/scripts/jquery.min.js",
"app/public/fonts/*.*"
],
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"css": [
"app/common/styles/popup.css",
"app/common/styles/constants.css",
"app/common/styles/global.css"
],
"js": ["app/scripts/jquery.min.js"],
"run_at": "document_end"
},
{
"matches": ["https://*/*", "http://*/*"],
"js": ["content-script.js"],
"run_at": "document_end"
},
{
"matches": [
"https://unsplash.com/t/nature/?slatetour",
"https://archive.org/details/solarsystemcollection?slatetour",
"https://publicdomainvectors.org/?slatetour"
],
"css": ["app/common/styles/product-tour.css"],
"js": ["app/scripts/jquery.min.js", "app/common/product-tour.js"],
"run_at": "document_start"
}
],
"commands": {
"openSlate": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Ctrl+Shift+S"
},
"description": "Open Slate app."
}
},
"browser_action": {
"default_icon": {
"16": "app/public/static/icon16.png",
"24": "app/public/static/icon48.png",
"32": "app/public/static/icon128.png"
},
"default_title": "Slate"
},
"manifest_version": 2,
"offline_enabled": true,
"icons": {
"16": "app/public/static/icon16.png",
"48": "app/public/static/icon48.png",
"128": "app/public/static/icon128.png"
}
}