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": "Detecting-ai.com: AI Detector, Humanizer & Fact Checker", "version": "1.0", "description": "Highlight text to analyze with AI detection, plagiarism checker, humanizer, and fact checker.", "permissions": [ "scripting", "activeTab", "storage", "sidePanel", "cookies", "tabs" ], "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "icon.png", "index.html" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "side_panel": { "default_path": "index.html" }, "action": { "default_icon": "icon.png", "default_popup": "index.html" }, "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';" } }