- 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.
21 lines
508 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|
|
}
|