Files
Link-Log/webextension/manifest.json
T
olaf 342d8a069a
Build LinkLog Development Image / development-image (push) Successful in 9s
plugin updated to use the refresh flow and security tightened
2026-08-26 17:23:05 +02:00

40 lines
916 B
JSON

{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"version": "0.1.0",
"description": "__MSG_extensionDescription__",
"default_locale": "en-US",
"permissions": [
"activeTab",
"storage",
"tabs"
],
"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
}
}