Enhanced Translate with ChatGPT, GPT-4o and GPT-4o-mini.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "AI Translate Companion for Google",
"description": "Enhanced Translate with ChatGPT, GPT-4o and GPT-4o-mini.",
"version": "1.0",
"default_locale": "en",
"options_ui": {
"page": "options.html"
},
"action": {
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://translate.google.com/*"
],
"js": [
"js/vendor.js",
"js/content_script.js"
]
}
],
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"storage"
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
}