-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (40 loc) · 1.01 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
{
"manifest_version": 2,
"name": "Extension tester: correct web-request details for content-script ajax calls",
"description": "This extension tests correctness of intercepted web-request details for content-script ajax calls",
"version": "0.1",
"icons": {
"19":"img/icon-19px.png",
"38":"img/icon-38px.png",
"64":"img/icon-64px.png",
"128":"img/icon-128px.png"
},
"browser_action": {
"default_icon": {
"19":"img/icon-19px.png",
"38":"img/icon-38px.png"
}
},
"background": {
"scripts": [
"js/lib/bluebird.js",
"js/iframe-loader.js",
"js/background.js"
]
},
"content_scripts": [
{
"js": [ "js/content.js" ],
"all_frames": true,
"matches": [ "http://*/*page.html" ],
"run_at": "document_end"
}
],
"permissions": [
"http://*/*",
"https://*/*",
"tabs",
"webRequest",
"webRequestBlocking"
]
}