Secure vault for passwords
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "SBA - password tool",
"description": "Secure vault for passwords",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "init.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_idle",
"js": [
"inject_script.js"
]
}
],
"permissions": [
"storage",
"activeTab",
"contextMenus",
"tabs"
],
"host_permissions": [
"https://sba-pass.web-05.sba.nl/",
"<all_urls>"
],
"action": {
"default_popup": "login_popup.html",
"default_icon": {
"16": "/images/icon16.png",
"32": "/images/icon32.png",
"48": "/images/icon48.png",
"128": "/images/icon128.png"
}
},
"icons": {
"16": "/images/icon16.png",
"32": "/images/icon32.png",
"48": "/images/icon48.png",
"128": "/images/icon128.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}