forked from Asana/Chrome-Extension-Example
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
31 lines (31 loc) · 810 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
{
"action": {
"default_icon": "images/icon48.png",
"default_popup": "popup.html",
"default_title": "Asana"
},
"background": {
"service_worker": "background.js"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+A"
}
}
},
"description": "Quickly add tasks to Asana from any web page.",
"host_permissions": ["https://app.asana.com/*"],
"icons": {
"128": "images/icon128.png",
"16": "images/icon16.png",
"48": "images/icon48.png"
},
"incognito": "split",
"manifest_version": 3,
"name": "Asana Extension Example MV3",
"offline_enabled": false,
"options_page": "options.html",
"permissions": [ "activeTab", "cookies", "storage" ],
"version": "0.0.0"
}