-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest(for-firefox).json
43 lines (43 loc) · 1012 Bytes
/
manifest(for-firefox).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
{
"name": "__MSG_Name__",
"version": "1.5.2",
"manifest_version": 3,
"description": "__MSG_Description__",
"default_locale": "en",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"./js/init.js"
]
}
],
"permissions": ["scripting","storage","tabs"],
"icons": {
"16": "./img/icon_16.png",
"48": "./img/icon_48.png",
"128": "./img/icon_128.png"
},
"host_permissions": [
"<all_urls>"
],
"background": {
"scripts": ["./js/serviceworker.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"action": {
"default_title": "Misskey TL Filter",
"default_popup": "popup.html",
"default_icon": {
"16": "./img/icon_16.png",
"48": "./img/icon_48.png",
"128": "./img/icon_128.png"
}
}
}