-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
45 lines (45 loc) · 975 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
44
45
{
"manifest_version": 2,
"name": "Cloudinsight Dev",
"version": "0.4.0",
"description": "Developer Plugin for Cloudinsight",
"icons": {
"128": "assets/icon_128.png"
},
"background": {
"scripts": [
"lib/background.js"
]
},
"permissions": [
"*://*.oneapm.com/*",
"*://*.cloudinsight.cc/*",
"https://h0r0rop9h6vu9k8oxge5.wilddogio.com/*",
"http://www.google-analytics.com/",
"alarms",
"storage",
"webRequest",
"webRequestBlocking",
"contextMenus",
"tabs",
"notifications"
],
"content_scripts": [
{
"matches": [
"*://*.oneapm.com/*",
"*://*.cloudinsight.cc/*"
],
"js": [
"lib/content.js"
],
"runat": "document_start"
}
],
"browser_action": {
"default_title": "Cloudinsight Dev",
"default_icon": "assets/icon_32.png"
},
"author": "wyvernnot",
"homepage_url": "https://github.com/cloudinsight/dev-chrome-extension"
}