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": "Web Guardian | Website Access Control",
"version": "1.0",
"description": "Protect websites with a PIN lock",
"permissions": [
"activeTab",
"storage",
"unlimitedStorage"
],
"host_permissions": [],
"optional_host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_title": "Web Guardian"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"assets\/css\/lock.css"
],
"js": [
"assets\/js\/content.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "assets\/js\/background.js"
},
"icons": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"README.html"
],
"matches": [
"<all_urls>"
]
}
]
}