-
Notifications
You must be signed in to change notification settings - Fork 240
/
manifest.json
44 lines (44 loc) · 1.13 KB
/
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
44
{
"name": "Telemetry Viewer",
"short_name": "Telemetry Viewer",
"description": "A browser extension that provides a real time view of what's happening in Application Insights including what telemetry is being logged by the web application",
"version": "0.7.4",
"version_name": "0.7.4",
"manifest_version": 2,
"icons": {
"16": "images/icon-16.png",
"128": "images/icon-128.png"
},
"permissions": [
"<all_urls>",
"activeTab",
"webRequest"
],
"background": {
"scripts": [
"scripts/background.js"
]
},
"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
},
"default_title": "Telemetry Viewer"
},
"web_accessible_resources": [
"scripts/pageHelper.js",
"scripts/pageHelper.min.js",
"scripts/pageHelper.min.js.map"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/contentLoad.min.js"
]
}
]
}