Inspect and view changes in Passy - Password Manager Browser Extension source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"author": "GlitterWare",
"manifest_version": 2,
"name": "Passy - Password Manager Browser Extension",
"short_name": "Passy",
"description": "Multipurpose password manager browser extension with autofill",
"version": "2.0.0",
"content_security_policy": "script-src 'self' 'wasm-unsafe-eval' ; object-src 'self'",
"icons": {
"16": "icons/Icon-16.png",
"48": "icons/Icon-48.png",
"128": "icons/Icon-128.png",
"192": "icons/Icon-192.png",
"512": "icons/Icon-512.png"
},
"web_accessible_resources": [
"browser-polyfill.min.js",
"canvaskit",
"index.html",
"index.js",
"main.dart.js",
"icons/Icon-48.png",
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"browser-polyfill.min.js",
"content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"tabs",
"activeTab",
"storage",
"nativeMessaging"
],
"browser_specific_settings": {
"gecko": {
"id": "glitterware.passy_browser_extension@github.io"
}
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "Passy",
"default_icon": {
"16": "icons/Icon-16.png",
"48": "icons/Icon-48.png",
"128": "icons/Icon-128.png",
"192": "icons/Icon-192.png",
"512": "icons/Icon-512.png"
}
}
}