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": "HumanizeAI", "version": "0.0.6", "description": "Humanize AI written text from chatgpt", "permissions": [ "activeTab", "storage" ], "host_permissions": [ "https:\/\/humanizeaitext.com\/*", "https:\/\/humanizeaitext-backend-793133627742.us-central1.run.app\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" } }, "background": { "service_worker": "background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "assets\/logo.png", "assets\/humanizeAiLogo.svg", "assets\/*", "content.js", "css\/style.css" ], "matches": [ "https:\/\/chatgpt.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/chatgpt.com\/*" ], "js": [ "content.js" ], "css": [ "css\/style.css" ] }, { "matches": [ "https:\/\/humanizeaitext.ai\/*" ], "js": [ "humanize-content.js" ] } ], "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" } }