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": "Passwd: Team Password Manager",
"description": "Passwd remembers all your team's passwords for you. And stores them safely.",
"version": "2.4.0",
"short_name": "Passwd Extension",
"icons": {
"16": "\/passwd-logo-grey.png",
"32": "\/passwd-logo-grey.png",
"48": "\/passwd-logo-grey.png",
"128": "\/passwd-logo-grey.png"
},
"homepage_url": "https:\/\/passwd.team",
"host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"permissions": [
"activeTab",
"tabs",
"storage",
"scripting",
"alarms"
],
"web_accessible_resources": [
{
"resources": [
"images\/dots.png",
"styles\/font.css",
"styles\/reset.css",
"interceptWebAuthn.js",
"saveCredentialsPage.html",
"updatePasswordPage.html",
"savePasskeyPage.html",
"usePasskeyPage.html"
],
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
]
}
],
"content_security_policy": {
"extension_pages": "default-src 'self'; img-src 'self' https:\/\/*.googleusercontent.com data:; style-src-elem 'self' https:\/\/*.typekit.net 'unsafe-inline'; style-src 'self' https:\/\/*.typekit.net 'unsafe-inline'; font-src 'self' https:\/\/use.typekit.net; connect-src https:; script-src-elem 'self'"
},
"externally_connectable": {
"ids": [],
"matches": [
"https:\/\/*.passwd.team\/*"
]
},
"background": {
"type": "module",
"service_worker": "background.js"
},
"action": {
"default_title": "Passwd Extension Popup",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"all_frames": false,
"exclude_matches": [
"https:\/\/*.passwd.team\/*"
],
"run_at": "document_end",
"js": [
"content-scripts\/saveCredentials.js"
],
"world": "ISOLATED"
},
{
"matches": [
"https:\/\/*\/*"
],
"all_frames": false,
"exclude_matches": [
"https:\/\/*.passwd.team\/*"
],
"run_at": "document_end",
"js": [
"content-scripts\/webAuthn.js"
],
"world": "ISOLATED"
}
]
}