-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·59 lines (55 loc) · 1.7 KB
/
Copy pathmanifest.json
File metadata and controls
executable file
·59 lines (55 loc) · 1.7 KB
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
{
"manifest_version": 2,
"version": "0.0.2",
"name": "Knotes",
"short_name": "Knotes",
"description": "Super fast notes app for Chrome from Knotable",
"app": {
"background": {
"persistent": true,
"scripts": [
"js/vendor/chrome_localStorage.js",
"js/vendor/sockjs.min.js",
"js/vendor/jquery.2.1.0.js",
"js/vendor/underscore-min.js",
"js/vendor/moment.min.js",
"js/vendor/ddp.js",
"js/vendor/q.js",
"js/vendor/asteroid.chrome.js",
"js/background/ddp-log.js",
"js/background/asteroid.js",
"js/background/logger.js",
"js/background/config.js",
"js/background/account-helper.js",
"js/background/meteorDDP.js",
"js/background/background.js",
"js/background/subscriptions.js",
"js/background/messageManager.js",
"js/newtab/application_ready.js"
]
}
},
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"permissions": [
"<all_urls>",
"background",
"contextMenus",
"notifications",
"storage",
"http://mail.google.com/*",
"https://mail.google.com/*",
"https://*.googleusercontent.com/*",
"https://mail-attachment.googleusercontent.com/",
"https://apis.google.com/",
"https://ssl.google.com/",
"http://*/*",
"https://*/*"
],
"externally_connectable": {
"matches": ["*://*.knotable.com/*", "http://localhost:3000/*"]
}
}