forked from leonvogt/hotwire-dev-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.template.json
44 lines (44 loc) · 1.04 KB
/
manifest.template.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
{
"manifest_version": 3,
"name": "Hotwire Dev Tools",
"version": "0.2.3",
"description": "Dev Tools for Turbo and Stimulus",
"icons": {
"16": "images/icon-16-wo.png",
"32": "images/icon-32-wo.png",
"48": "images/icon-48-wo.png",
"128": "images/icon-128-wo.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["dist/content.js"],
"css": ["styles/content.css"]
}
],
"permissions": ["storage", "activeTab"],
"action": {
"default_title": "Click or press Alt+Shift+S to launch Dev Tools",
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": ["dist/hotwire_dev_tools_inject_script.js", "styles/detail_panel.css"],
"matches": ["<all_urls>"]
}
],
{{#browser_specific_settings}}
"browser_specific_settings": {
"gecko": {
"id": "hotwire_dev_tools@browser_extension"
}
},
{{/browser_specific_settings}}
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+S"
}
}
}
}