-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
executable file
·56 lines (56 loc) · 1.31 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "__MSG_appName__",
"version": "1.1.5",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons":
{
"16": "icons/logo.png",
"128": "icons/logo.png"
},
"default_locale": "en",
"background":
{
"scripts": [
"scripts/jquery-css-deprecated-dimensions-effects-event-alias-offset-sizzle-wrap.min.js",
"scripts/csp.js",
"scripts/background.js"
],
"persistent": true
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https://js-agent.nr-assets.net; object-src 'self'",
"permissions": [
"tabs",
"activeTab",
"storage",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"options_ui":
{
"page": "options/options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/injector.js"
],
"all_frames": true,
"run_at": "document_start"
}],
"browser_action":
{
"default_icon":
{
"19": "icons/logo.png",
"38": "icons/logo.png"
},
"default_title": "New Relic Injector",
"default_popup": "popup/popup.html"
}
}