forked from Asana/Chrome-Extension-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (38 loc) · 808 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
{
"name": "Asana Extension for Chrome",
"version": "0.9.1",
"description": "Integrates Asana with your browsing experience.",
"icons": {
"128": "icon128.png"
},
"minimum_chrome_version": "16",
"browser_action": {
"default_icon": "icon19.png",
"default_title": "Asana",
"default_popup": "popup.html"
},
"background_page": "background.html",
"options_page": "options.html",
"permissions": [
"tabs",
"*://*/*",
"cookies",
"*://*.asana.com/*",
"*://localhost.org/*"
],
"content_scripts": [{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"*://*.asana.com/*"
],
"js": [
"asana.js",
"selection_client.js",
"quick_add_client.js"
],
"run_at": "document_start",
"all_frames": false
}]
}