{
"manifest_version": 3,
"name": "Elly, Your Nanny",
"short_name": "Elly",
"version": "2.4.1",
"description": "Block, limit, and schedule website access. PIN-protected parental controls with time limits and schedules for kids. By Vrilsoft.",
"author": "Vrilsoft Inc.",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"tabs",
"webNavigation",
"storage",
"alarms",
"notifications",
"scripting",
"windows"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background/background.js",
"type": "module"
},
"action": {
"default_title": "Nanny",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"options_page": "options/options.html",
"content_scripts": [
{
"matches": [ "<all_urls>" ],
"js": [ "content/content.js" ],
"css": [ "content/content.css" ],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"content/block.html",
"pin/pin.html",
"premium/premium.css",
"premium/premium.js",
"lib/chart.js"
],
"matches": [ "<all_urls>" ]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net; font-src https://cdn.jsdelivr.net;"
}
}