Files
Link-Log/webextension/manifest.json
T
2026-08-24 22:17:48 +02:00

31 lines
543 B
JSON

{
"manifest_version": 3,
"name": "LinkLog",
"version": "0.1.0",
"description": "Capture and submit page links to LinkLog.",
"permissions": [
"activeTab",
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "LinkLog",
"default_popup": "popup.html",
"default_icon": {
"16": "logo.svg",
"32": "logo.svg"
}
},
"icons": {
"48": "logo.svg",
"96": "logo.svg"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}