-
Notifications
You must be signed in to change notification settings - Fork 25
/
manifest.json
27 lines (27 loc) · 878 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
{
"name": "Nightwatch.js test recorder",
"version": "0.5",
"manifest_version": 2,
"description": "Functional-oriented and javascript-friendly test recorder. Exports NightwatchJS scripts. Supports screenshots.",
"icons": {"48": "./resources/images/icon.png",
"128": "./resources/images/icon-128.png" },
"browser_action": {
"default_icon": "./resources/images/icon.png",
"default_popup": "./public/views/control.html",
"default_title": "Nightwatch.js test recorder"
},
"background": {
"scripts": ["./public/js/background.js"]
},
"permissions": [
"tabs",
"background",
"http://*/*"
],
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["./public/js/recorder.js"]
}],
"offline_enabled": true,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}