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": "ChatGPT Translate", "version": "1.0", "description": "Use ChatGPT for translations right on Google Translate", "host_permissions": [ "https:\/\/translate.google.com\/*", "https:\/\/api.openai.com\/*", "https:\/\/chatgpt-translate-api.huyckkid14-projects.workers.dev\/" ], "icons": { "128": "icon.png" }, "action": { "default_icon": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/translate.google.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ] }