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": "PornBlock AI", "version": "1.0.1", "description": "AI Powered Pornography Blocker using advanced AI to protect your browsing experience", "permissions": [ "storage", "alarms", "tabs", "declarativeNetRequest", "webNavigation" ], "host_permissions": [ "<all_urls>", "https:\/\/generativelanguage.googleapis.com\/*", "https:\/\/api.openai.com\/*", "https:\/\/api.anthropic.com\/*" ], "background": { "service_worker": "service_worker.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "options_page": "options.html", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "declarative_net_request": { "rule_resources": [] }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "pre_content_script.js" ], "run_at": "document_start", "all_frames": false }, { "matches": [ "<all_urls>" ], "js": [ "content_script.js" ], "run_at": "document_idle", "all_frames": false } ], "web_accessible_resources": [ { "resources": [ "blocked.html", "blocked.js", "error.html", "error.js", "api_missing.html", "api_missing.js" ], "matches": [ "<all_urls>" ] } ] }