forked from trembacz/xpath-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 916 Bytes
/
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
{
"manifest_version": 3,
"name": "xPath Finder v2",
"description": "Click on any element to get the xPath",
"homepage_url": "https://github.com/SnapFinance/xpath-finder",
"version": "0.0.1",
"icons": {
"64": "icons/inactive.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "icons/inactive.png",
"default_title": "Click on any element to get the xPath"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"<all_urls>"
],
"js": [
"inspect.js"
],
"run_at": "document_end"
}
],
"commands": {
"toggle-xpath": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
},
"description": "Toggle plugin"
}
},
"options_ui": {
"page": "options.html"
},
"permissions": [
"activeTab",
"storage"
]
}