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": "LockMate: Screen Lock Extension",
"version": "1.1.1",
"description": "Secure your browser with customizable passcodes and auto-lock private domains for enhanced privacy.",
"permissions": [
"activeTab",
"webNavigation",
"storage",
"tabs",
"idle",
"contextMenus",
"browsingData"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets\/screen-lock-logo.png",
"48": "assets\/screen-lock-logo.png",
"128": "assets\/screen-lock-logo.png"
}
},
"icons": {
"16": "assets\/screen-lock-logo.png",
"48": "assets\/screen-lock-logo.png",
"128": "assets\/screen-lock-logo.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": [
"<all_urls>"
],
"js": [
"widget.js"
],
"run_at": "document_idle",
"match_about_blank": true,
"match_origin_as_fallback": true
},
{
"matches": [
"<all_urls>"
],
"css": [
"widget.css"
],
"run_at": "document_idle",
"all_frames": true,
"match_about_blank": true,
"match_origin_as_fallback": true
}
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"assets\/*"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"widget.css"
],
"matches": [
"<all_urls>"
]
}
]
}