forked from onhello-automation/onhello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 906 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
41
42
43
{
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDescription__",
"version": "0.2.0",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"128": "images/icon128.png"
},
"browser_action": {
"default_icon": "images/icon128.png",
"default_title": "__MSG_browserActionTitle__",
"default_popup": "pages/browser_action.html"
},
"options_page": "pages/home.html",
"options_ui": {
"page": "pages/home.html",
"open_in_tab": true,
"browser_style": true,
"chrome_style": true
},
"content_scripts": [
{
"matches": [
"https://teams.microsoft.com/*",
"https://teams.live.com/*"
],
"run_at": "document_start",
"js": [
"scripts/content_script.js"
]
}
],
"web_accessible_resources": [
"scripts/injected.js"
],
"permissions": [
"storage",
"https://teams.microsoft.com/*",
"https://teams.live.com/*"
]
}