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": "LockMyTab \u2013 Secure PIN Lock for Tabs",
"version": "2.0.0",
"description": "Protect your privacy by locking individual browser tabs with a secure 4-digit PIN. Secure, fast, and easy to use.",
"permissions": [
"storage",
"tabs",
"idle",
"activeTab"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_start",
"all_frames": true
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"setup.html",
"setup.js"
],
"matches": [
"<all_urls>"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "lockmytab@chrg_bsr.com",
"strict_min_version": "109.0",
"data_collection_permissions": {
"required": [
"none"
]
}
}
},
"commands": {
"lock-current-tab": {
"suggested_key": {
"default": "Alt+L",
"mac": "Alt+L"
},
"description": "Lock the current tab immediately"
}
}
}