The Chrome manifest was already updated; the Firefox manifest still showed lowercase 'relicario' as the extension name and was pinned at 0.1.0. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
40 lines
983 B
JSON
40 lines
983 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Relicario",
|
|
"version": "0.2.0",
|
|
"description": "Two-factor encrypted password manager",
|
|
"icons": {
|
|
"16": "icons/icon-16.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
},
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "relicario@adlee.work",
|
|
"strict_min_version": "128.0"
|
|
}
|
|
},
|
|
"permissions": ["storage", "activeTab", "clipboardWrite"],
|
|
"host_permissions": ["<all_urls>"],
|
|
"background": {
|
|
"scripts": ["service-worker.js"]
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon-16.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
}
|
|
},
|
|
"content_scripts": [{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_idle"
|
|
}],
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
|
|
},
|
|
"web_accessible_resources": []
|
|
}
|