passchmop/manifest.json
schmop 009149a88b feat: vault popup with search, autofill and clipboard copy
- Sorts entries by match with the active tab's origin so the right one is at the top.
- Autofill button injects a form-heuristic filler into the active tab via scripting.executeScript.
- Copied credentials auto-clear from the clipboard after 30 seconds.
2026-04-23 01:33:04 +02:00

29 lines
726 B
JSON

{
"manifest_version": 3,
"name": "Passchmop",
"version": "0.1.0",
"description": "Git-backed, client-side-encrypted password manager.",
"background": {
"scripts": ["build/background.js"]
},
"permissions": ["storage", "clipboardWrite", "alarms", "activeTab", "tabs", "scripting"],
"host_permissions": ["https://*/*"],
"action": {
"default_title": "Passchmop",
"default_popup": "src/popup/popup.html"
},
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": true
},
"browser_specific_settings": {
"gecko": {
"id": "passchmop@schmop",
"strict_min_version": "115.0",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}