-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (38 loc) · 922 Bytes
/
manifest.json
File metadata and controls
38 lines (38 loc) · 922 Bytes
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
{
"manifest_version": 2,
"name": "ZeuZ AI Element Recorder",
"description": "Inspect page elements and use ZeuZ AI-supported plugin to automate testing in minutes.",
"homepage_url": "https://www.zeuz.ai/",
"version": "1.3",
"icons": {
"64": "icons/default-64.png"
},
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icons/default-64.png",
"default_title": "Click on any element to get the locating info"
},
"content_scripts": [{
"all_frames": true,
"matches": ["<all_urls>"],
"js":["inspect.js"]
}],
"commands": {
"toggle-xpath": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
},
"description": "Toggle plugin"
}
},
"options_page": "options.html",
"permissions": [
"activeTab",
"<all_urls>",
"contextMenus",
"storage"
]
}