-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 1.15 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
{
"manifest_version": 2,
"name": "chatwork-notif",
"description": "Display unread badges and notify new messages of chatwork",
"version": "1.0",
"icon": {
"16": "",
"48": "",
"128": ""
},
"background": {
"scripts": [
"scripts/libs/jquery.js",
"scripts/libs/underscore.js",
"scripts/libs/backbone.js",
"scripts/app/core.js",
"scripts/controller/base.js",
"scripts/model/me.js",
"scripts/model/room.js",
"scripts/model/contact.js",
"scripts/model/message.js",
"scripts/collection/rooms.js",
"scripts/collection/contacts.js",
"scripts/collection/messages.js",
"scripts/background.js"
]
},
"browser_action": {
"default_icon": {
"19": "images/icon.png",
"38": "images/icon.png"
},
"default_title": "chatwork-notif",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"storage",
"unlimitedStorage",
"webNavigation",
"https://api.chatwork.com/*",
"https://tky-chat-work-appdata.s3.amazonaws.com/*",
"notifications"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}