-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 998 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
{
"name": " TFS Bug Printer",
"version": "2.0",
"description": "Displays a page formatted for print based on data from displayed TFS query result.",
"author": "Jan Novotný",
"permissions": ["activeTab", "declarativeContent"],
"background": {
"scripts": ["background-tfs-print.js"],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https://*.visualstudio.com/*",
"https://dev.azure.com/*",
"https://tfs/*",
"https://*.loc/*"
],
"css": ["content-tfs-print.css"],
"js": ["content-tfs-print.js"]
}
],
"page_action": {
"default_icon": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
},
"default_title": "Toggle TFS print view"
},
"icons": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
},
"manifest_version": 2
}