passchmop/manifest.json
schmop c965d0f4ad feat: encrypted git-backed vault with idle auto-lock
- Master password derives an AES-GCM-256 key via PBKDF2-SHA256; the key never leaves the device and the remote only sees ciphertext blobs.
- One file per entry under entries/; conflicts produce a sidecar the user resolves in the UI.
- Vault stays unlocked across background-script suspensions via storage.session; auto-locks after 5 min of inactivity.
2026-04-23 01:26:32 +02:00

21 lines
508 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"],
"host_permissions": ["https://*/*"],
"browser_specific_settings": {
"gecko": {
"id": "passchmop@schmop",
"strict_min_version": "115.0",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}