-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
41 lines (41 loc) · 983 Bytes
/
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
{
"version": "1.1.0",
"manifest_version": 3,
"name": "Quick Reply",
"description": "Quick Email Reply Extension for lore.kernel.org mirror list.",
"icons": {
"16": "icons/quick_icon_16.png",
"32": "icons/quick_icon_32.png",
"48": "icons/quick_icon_48.png",
"128": "icons/quick_icon_128.png"
},
"action": {
"default_popup": "popup/popup.html",
"default_title": "Email Extension"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["https://lore.kernel.org/*"],
"js": ["scripts/content.js"],
"run_at": "document_end"
}
],
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"permissions": [
"identity",
"storage",
"activeTab",
"tabs",
"scripting"
],
"host_permissions": [
"*://lore.kernel.org/*"
]
}