-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.firefox.json
More file actions
38 lines (36 loc) · 896 Bytes
/
manifest.firefox.json
File metadata and controls
38 lines (36 loc) · 896 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
{
"manifest_version": 2,
"name": "POST to lemmy",
"version": "",
"author": "Loys Caucheteux - PG3 for Nice Open Source",
"browser_specific_settings": {
"gecko": {
"id": "extension@postlemmy.niceopensource.org",
"strict_min_version": "90.0"
}
},
"description": "A cross-browser extension to post links to your Lemmy instance.",
"homepage_url": "https://github.com/NiceOpenSource/posttolemmy",
"icons": {
"32": "icons/lemmy-32.png",
"48": "icons/lemmy-48.png",
"64": "icons/lemmy-64.png",
"128": "icons/lemmy-128.png"
},
"background": {
"scripts" : [
"scripts/browser-polyfill.min.js"
]
},
"permissions": [
"activeTab",
"tabs",
"storage",
"*://*/*"
],
"browser_action": {
"default_icon": "icons/lemmy-48.png",
"default_title": "POST to lemmy",
"default_popup": "popup/index.html"
}
}