Files
Link-Log/webextension/manifest.json
T
2026-08-24 14:30:30 +02:00

23 lines
406 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"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}