-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmanifest.json
58 lines (58 loc) · 1.36 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
{
"name": "LetXPath",
"short_name": "XPath finder",
"description": "XPath Finder, simple and useful, open-source project by LetCode with Koushik",
"author": "Koushik Chatterjee",
"version": "3.0.1",
"manifest_version": 3,
"icons": {
"16": "assets/16.png",
"32": "assets/32.png",
"128": "assets/32.png"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"contextMenus",
"activeTab",
"storage",
"notifications"
],
"content_scripts": [
{
"run_at": "document_start",
"all_frames": false,
"matches": [
"<all_urls>"
],
"js": [
"app/src/content.js",
"app/src/conversion.js",
"app/src/anchorXPath.js",
"app/src/getCSS.js",
"app/src/getLabel.js",
"app/src/methodName.js",
"app/src/record.js",
"app/src/search.js",
"app/src/textXPath.js",
"app/src/utils.js",
"app/src/parentElements.js",
"app/src/handleTable.js"
],
"css": [
"app/styles/highlight.css"
]
}
],
"background": {
"service_worker": "service_worker.js"
},
"devtools_page": "devtools.html",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"homepage_url": "https://www.letcode.in",
"options_page": "option/option.html",
"offline_enabled": true
}