-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmanifest.json
45 lines (45 loc) · 1.24 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
{
"name": "Capycorder",
"version": "1.0.2",
"manifest_version": 2,
"description": "Record user interactions for use in Capybara request specs.",
"icons": {
"128": "images/icon128.png",
"16": "images/icon16.png",
"48": "images/icon48.png"
},
"content_scripts": [{
"all_frames": true,
"matches": ["\u003Call_urls\u003E"],
"run_at": "document_start",
"css": [
"css/ui.css"
],
"js": [
"js/lib/vendor/jquery.js",
"js/lib/jquery_plugins/jquery.get_locator.js",
"js/lib/jquery_plugins/jquery.get_selector.js",
"js/lib/vendor/highlighter.js",
"js/lib/vendor/underscore.js",
"js/lib/capybara/recorders/actions.js",
"js/lib/capybara/recorders/matchers.js",
"js/recorder_ui.js",
"js/recorder.js"
]
}],
"web_accessible_resources": [
"images/button_off.png",
"images/button_name.png",
"images/button_generate.png",
"images/button_capture_actions.png",
"images/button_capture_matchers.png"
],
"browser_action": {
"default_icon": "images/button_off.png",
"default_title": "Record a new session"
},
"background": {
"page": "background.html"
},
"permissions": ["tabs", "http://*/*", "clipboardRead", "clipboardWrite"]
}