-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 1.03 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
{
"manifest_version": 3,
"name": "Div Selector",
"version": "1.2",
"description": "List all divs in a treeview, select and highlight them, and copy their visible text via a DevTools panel.",
"permissions": ["activeTab", "scripting"],
"devtools_page": "devtools_panel.html",
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"libs/jquery.min.js",
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"libs/css/all.min.css",
"libs/webfonts/fa-solid-900.woff2",
"libs/webfonts/fa-solid-900.woff",
"libs/webfonts/fa-solid-900.ttf",
"libs/jstree.min.js",
"libs/jstree.min.css"
],
"matches": ["<all_urls>"]
}
]
}