forked from amitg87/asana-chrome-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
40 lines (33 loc) · 851 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
34
35
36
37
38
39
40
{
"manifest_version" : 2,
"name": "AsanaNG - Asana Extension for Chrome",
"short_name": "AsanaNG",
"description": "Access Asana - quick and easy",
"version": "0.6.1",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"author": "Amit Gangrade - amitgangrade04@gmail.com",
"background": {
"page": "background.html",
"persistent": false
},
"browser_action": {
"default_icon": {
"19": "img/icon16.png"
},
"default_title": "AsanaNG",
"default_popup": "popup.html"
},
"permissions": ["cookies", "tabs", "*://*.asana.com/"],
"content_security_policy": "script-src 'self' https://maxcdn.bootstrapcdn.com; object-src 'self'",
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+A"
}
}
}
}