Files
Link-Log/webextension/manifest.json
T
olaf 3fdf146498
Build LinkLog Development Image / development-image (push) Successful in 9s
Added Locales to the webextention
2026-08-26 12:14:30 +02:00

43 lines
962 B
JSON

{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"version": "0.1.0",
"description": "__MSG_extensionDescription__",
"default_locale": "en-US",
"permissions": [
"activeTab",
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "__MSG_extensionName__",
"default_popup": "popup.html",
"default_icon": {
"16": "icon-16.png",
"32": "icon-32.png"
}
},
"icons": {
"48": "icon-48.png",
"96": "icon-96.png"
},
"browser_specific_settings": {
"gecko": {
"id": "linklog@kolkman.org",
"strict_min_version": "109.0",
"data_collection_permissions": {
"required": ["websiteActivity"],
"optional": []
},
"update_url": "https://git.kolkman.org/olaf/Link-Log/raw/branch/main/webextension/updates.json"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}