forked from sohwendy/Robotcorder
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmanifest.json
More file actions
43 lines (43 loc) · 1.22 KB
/
manifest.json
File metadata and controls
43 lines (43 loc) · 1.22 KB
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
{
"manifest_version": 2,
"name": "Robocorp Recorder",
"version": "0.6.2",
"homepage_url": "https://github.com/robocorp/Robotcorder#robocorp-recorder",
"description": "A browser extension that records user action and scans the page to generate RobotFramework scripts",
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"background": {
"scripts": [
"./src/constants.js",
"./src/translator/robot-translator.js",
"./src/background.js"
],
"persistent": true
},
"options_page": "./src/options.html",
"content_scripts": [{
"matches": [
"<all_urls>"
],
"js": [
"./src/locator/xpath-locator.js",
"./src/locator/tree-builder.js",
"./src/locator/classifier.js",
"./src/locator/scanner.js",
"./src/content.js"
],
"run_at": "document_end",
"all_frames": true
}],
"browser_action": {
"default_icon": "assets/mark-128.png",
"default_popup": "src/popup.html"
},
"icons": {
"16": "assets/mark-16.png",
"32": "assets/mark-32.png",
"48": "assets/mark-48.png",
"128": "assets/mark-128.png",
"256": "assets/mark-256.png"
},
"permissions": ["downloads", "storage"]
}