-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.firefox.json
More file actions
42 lines (42 loc) · 973 Bytes
/
manifest.firefox.json
File metadata and controls
42 lines (42 loc) · 973 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
39
40
41
42
{
"manifest_version": 3,
"name": "HTMX DevTools",
"version": "0.2.0",
"description": "Developer tools for debugging HTMX applications. Inspect requests, elements, swaps, and errors.",
"permissions": ["activeTab"],
"action": {},
"devtools_page": "devtools.html",
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"],
"run_at": "document_start"
},
{
"matches": ["<all_urls>"],
"js": ["page-script.js"],
"run_at": "document_start",
"world": "MAIN"
}
],
"web_accessible_resources": [
{
"resources": ["page-script.js"],
"matches": ["<all_urls>"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "htmx-devtools@devtools",
"strict_min_version": "128.0"
}
},
"icons": {
"16": "icons/htmx-16.png",
"48": "icons/htmx-48.png",
"128": "icons/htmx-128.png"
}
}