forked from katalon-studio/katalon-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
95 lines (89 loc) · 2.67 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"description": "Selenium IDE alternative to record and export Selenium scripts. With reports & screenshots. Fast & open-source.",
"manifest_version": 2,
"name": "addon_name_placeholder",
"version": "5.1.1",
"homepage_url":"https://www.katalon.com/",
"icons":
{
"16": "katalon/images/branding/branding_16.png",
"48": "katalon/images/branding/branding_48.png",
"128": "katalon/images/branding/branding_128.png"
},
"permissions": [
"tabs",
"activeTab",
"webRequest",
"contextMenus",
"downloads",
"webNavigation",
"notifications",
"http://*/",
"https://*/",
"storage",
"unlimitedStorage",
"<all_urls>",
"debugger"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"common/browser-polyfill.js",
"content/prompt-injecter.js",
"content/runScript-injecter.js"
],
"match_about_blank": true,
"all_frames": true,
"run_at": "document_start"
},
{
"matches": ["<all_urls>"],
"js": [
"content/bowser.js",
"content/atoms.js",
"content/utils.js",
"content/selenium-commandhandlers.js",
"content/selenium-browserbot.js",
"common/escape.js",
"content/selenium-api.js",
"content/locatorBuilders.js",
"content/recorder.js",
"content/recorder-handlers.js",
"content/command-receiver.js",
"content/targetSelecter.js",
"content/sizzle.js",
"content/kar.js"
],
"match_about_blank": true,
"all_frames": true
},
{
"matches": ["<all_urls>"],
"js": ["content/jquery.simulate.js"],
"match_about_blank": true,
"all_frames": true
}
],
"background":
{
"scripts": [
"content/bowser.js",
"common/browser-polyfill.js",
"background/background.js",
"background/install.js",
"background/kar.js"
]
},
"browser_action":
{
"default_icon": "katalon/images/branding/branding_16.png",
"default_title": "Katalon Recorder"
},
"web_accessible_resources": [
"page/prompt.js",
"page/runScript.js"
],
"offline_enabled": true
}