forked from ebrehault/resurrectio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
26 lines (26 loc) · 695 Bytes
/
manifest.json
File metadata and controls
26 lines (26 loc) · 695 Bytes
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
{
"name": "Resurrectio",
"version": "0.3",
"manifest_version": 2,
"description": "Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.",
"icons": {"48": "makina-icon.png",
"128": "makina-icon-128.png" },
"browser_action": {
"default_icon": "makina-icon.png",
"default_popup": "control.html",
"default_title": "CasperJS test recorder"
},
"background": {
"scripts": ["background.js"]
},
"permissions": [
"tabs",
"background",
"http://*/*"
],
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["recorder.js"]
}],
"offline_enabled": true
}