-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.template.json
52 lines (52 loc) · 1.32 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
45
46
47
48
49
50
51
52
{
"manifest_version": 3,
"name": "Hotwire Dev Tools",
"version": "0.3.2",
"description": "Dev Tools for Turbo and Stimulus",
"icons": {
{{#useOutlineIcons}}
"16": "images/icon-16-wo.png",
"32": "images/icon-32-wo.png",
"48": "images/icon-48-wo.png",
"128": "images/icon-128-wo.png"
{{/useOutlineIcons}}
{{^useOutlineIcons}}
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
{{/useOutlineIcons}}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["dist/hotwire_dev_tools_content.js"],
"css": ["styles/hotwire_dev_tools_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/hotwire_dev_tools_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"
}
}
}
}