-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmanifest.json
67 lines (57 loc) · 2.08 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
57
58
59
60
61
62
63
64
65
66
67
{
"manifest_version": 2,
"name": "Record/Replay",
"description": "Browser automation package. Easy to use and open source. Integrated functional testing framework.",
"author": "Tom Gallagher",
"version": "1.0.1.6",
"incognito": "not_allowed",
"icons": {
"16": "images/robot_violet_16.png",
"48": "images/robot_violet_48.png",
"128": "images/robot_violet_128.png"
},
"browser_action": {
"default_icon": {
"19": "images/robot_violet_19.png",
"38": "images/robot_violet_38.png"
},
"default_title": "Click to open Record/Replay user interface"
},
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"chrome_style": true,
"open_in_tab": false
},
"externally_connectable": {
"matches": ["*://*.vfs.cloud9.us-east-1.amazonaws.com/*"]
},
"background": {
"persistent": false,
"scripts": [
"third_party/Rx.min.js",
"third_party/jquery-3.1.1.min.js",
"third_party/dexie.min.js",
"utils/recordReplayMessenger.js",
"utils/mobileDeviceDictionary.js",
"utils/storage.js",
"models/recordingModel.js",
"models/activeRecordingModel.js",
"models/recordingEventModel.js",
"models/replayModel.js",
"models/activeReplayModel.js",
"models/replayEventModel.js",
"background/messageMonitor.js",
"background/recordingTabRunner.js",
"background/replayTabRunner.js",
"background/domSelectorReport.js",
"background/webNavigator.js",
"background/debuggerControls.js",
"background/keyBoardControls.js",
"background/tabControls.js",
"background/background.js"
]
},
"permissions": ["storage", "unlimitedStorage", "tabs", "downloads", "webNavigation", "debugger", "<all_urls>"]
}