Never forget a password again! Verizon Protect will make your life easier and passwords safer.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Verizon Protect",
"short_name": "VZ",
"description": "Never forget a password again! Verizon Protect will make your life easier and passwords safer.",
"version": "1.0.5",
"author": "Verizon",
"homepage_url": "https://verizon.com/",
"background": {
"service_worker": "src/background/mv3-launcher.js"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"src/forge/forge.js",
"src/content_scripts/content-script.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
}
],
"icons": {
"16": "src/images/icons/icon-16.png",
"48": "src/images/icons/icon-48.png",
"128": "src/images/icons/icon-128.png"
},
"permissions": [
"tabs",
"browsingData",
"storage",
"cookies",
"activeTab",
"unlimitedStorage",
"clipboardWrite",
"bookmarks"
],
"optional_permissions": [
"contextMenus",
"privacy"
],
"action": {
"default_icon": {
"128": "src/images/icons/icon-128.png"
},
"default_popup": "src/ui/index.html",
"default_title": "Verizon Protect"
},
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"resources": [
"src/images/icons/blank.png",
"src/content_scripts/popup.html",
"src/content_scripts/notification.html",
"src/images/icons/icon-32.png",
"src/images/icons/icon-32-i.png",
"src/images/icons/iconForce-32.png"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; img-src * data: ; object-src 'self'"
}
}