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": "Tab Lock Pro - Secure Your Tabs",
"version": "1.0.0",
"description": "Lock your browser tabs with Face ID, fingerprint, or password. Keep your sensitive tabs private and secure.",
"permissions": [
"tabs",
"storage",
"unlimitedStorage",
"alarms",
"activeTab"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"commands": {
"panic-lock": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Lock all tabs immediately"
}
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"web_accessible_resources": [
{
"resources": [
"locked.html",
"styles\/locked.css"
],
"matches": [
"<all_urls>"
]
}
]
}