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": "AI Parental Control", "version": "2.0", "description": "Blocks inappropriate web content using AI, based on parental settings", "permissions": [ "storage", "notifications", "alarms" ], "host_permissions": [ "https:\/\/aiparentalcontrol.com\/*", "https:\/\/api.stripe.com\/*" ], "incognito": "spanning", "action": { "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_popup": "options.html" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "css": [ "hide.css" ], "js": [ "content.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "logo.png" ], "matches": [ "<all_urls>" ] } ] }