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": "__MSG_extensionName__",
"version": "3.1.0.5692",
"version_name": "3.1.0",
"description": "__MSG_extensionDescription__",
"author": "Marius Wieschollek",
"default_locale": "en",
"minimum_chrome_version": "92",
"icons": {
"16": "img\/passwords-16.png",
"32": "img\/passwords-32.png",
"48": "img\/passwords-48.png",
"96": "img\/passwords-96.png",
"128": "img\/passwords-128.png"
},
"action": {
"default_icon": "img\/passwords-16.png",
"default_title": "__MSG_browserActionTitle__",
"default_popup": "html\/popup.html",
"browser_style": true,
"theme_icons": [
{
"light": "img\/passwords-light.png",
"dark": "img\/passwords-dark.png",
"size": 16
}
]
},
"background": {
"service_worker": "js\/background.js",
"type": "module"
},
"options_ui": {
"page": "html\/options.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/client.js"
],
"all_frames": true
}
],
"permissions": [
"tabs",
"alarms",
"storage",
"clipboardWrite",
"contextMenus",
"notifications",
"webRequest"
],
"host_permissions": [
"https:\/\/link.passwordsapp.org\/*"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+0"
}
}
}
}