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": "OneID",
"version": "2.0",
"description": "Secure your accounts with relayed emails.",
"action": {
"default_popup": "popup.html"
},
"icons": {
"48": "images\/icon48.png",
"128": "images\/icon128.png",
"500": "images\/icon500.png"
},
"commands": {
"open-account-page": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "Open OneID Account Page"
}
},
"background": {
"service_worker": "src\/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src\/content.js"
],
"run_at": "document_start"
}
],
"permissions": [
"scripting",
"activeTab",
"storage"
],
"host_permissions": [
"https:\/\/*.zymono.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"src\/inject.js"
],
"matches": [
"<all_urls>"
]
}
]
}