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": "SecureTab - Browser Privacy Lock",
"version": "1.1",
"description": "Secure your browser with password protection, auto-lock, and privacy controls. Perfect for shared computers and public spaces.",
"permissions": [
"storage",
"tabs",
"webNavigation",
"idle",
"contextMenus",
"commands"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Ctrl+Shift+L",
"mac": "Command+Shift+L",
"chromeos": "Ctrl+Shift+L",
"linux": "Ctrl+Shift+L"
},
"description": "Open extension popup"
},
"quick-lock": {
"suggested_key": {
"windows": "Alt+Shift+L",
"mac": "Alt+Shift+L",
"chromeos": "Alt+Shift+L",
"linux": "Alt+Shift+L"
},
"description": "Quick Lock Browser"
}
},
"web_accessible_resources": [
{
"resources": [
"images\/*",
"styles\/*",
"lock.html"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}