Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Passwords Manager \u2014 Simple, Secure, Zero-Knowledge",
"version": "0.2.2",
"description": "Auto-detect, save, and autofill passwords. Zero-knowledge encryption, local-first storage, with optional Chrome Sync.",
"action": {
"default_popup": "popup.html",
"default_title": "Simple Password Manager"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"minimum_chrome_version": "120"
}