-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 837 Bytes
/
manifest.json
File metadata and controls
31 lines (31 loc) · 837 Bytes
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
{
"name": "TFS Chat Extensions",
"version": "0.1.5",
"manifest_version": 2,
"background": {
"scripts": ["/src/store.js", "/src/main.js"]
},
"description": "Add-ons to the TFS Team Rooms (code syntax highlighting, pop-up noticiations, etc.)",
"homepage_url": "https://github.com/nuts4dotnet/TFSChatExtensions",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"content_scripts":[
{
"matches":["*://*/_rooms*", "*://*/*/_rooms*"],
"js":["src/bg/background.js"]
}
],
"web_accessible_resources": ["/src/bg/TeamRoomScript.js"],
"options_page": "src/options_custom/index.html",
"permissions": [
"contentSettings",
"tts",
"ttsEngine",
"notifications",
"https://*.visualstudio.com/_rooms*"
]
}