forked from SideeX/sideex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·53 lines (47 loc) · 1.45 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
{
"description": "SideeX (An Extended Version of Selenium IDE): An Open Source Record-Playback-Style Web Application Testing Tool",
"manifest_version": 2,
"name": "SideeX: An Extended Version of Selenium IDE",
"version": "2.2.3",
"homepage_url": "http://sideex.org/",
"icons":
{
"48": "icons/icons-48.png",
"96": "icons/icons-96.png"
},
"permissions": [
"tabs",
"activeTab",
"webRequest",
"contextMenus",
"downloads",
"webNavigation",
"notifications"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["atoms.js", "utils.js", "selenium-browserbot.js", "escape.js", "selenium-api.js", "locatorBuilders.js", "record-api.js", "record.js", "commands-api.js", "targetSelecter.js"],
"match_about_blank": true,
"all_frames": true
},
{
"matches": ["<all_urls>"],
"js": ["browser-polyfill.js", "prompt-injecter.js"],
"match_about_blank": true,
"all_frames": true,
"run_at": "document_start"
}
],
"background":
{
"scripts": ["browser-polyfill.js", "background.js"]
},
"browser_action":
{
"default_icon": "icons/icons-48.png",
"default_title": "SideeX"
},
"web_accessible_resources": ["prompt.js"]
}