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": "Browser Profiles Authentication - Secure Profile Lock",
"version": "1.0",
"description": "Password protection for all Browser Profiles",
"permissions": [
"storage",
"tabs",
"webNavigation",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "base_script\/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts\/content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"html\/unlock.html",
"styles\/styles.css",
"images\/icon.png"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"48": "images\/icon.png",
"128": "images\/icon.png"
},
"author": "Aristarh Ucolov",
"homepage_url": "https:\/\/github.com\/aristarhucolov",
"email": "[email protected]"
}