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": "2.0.1",
"description": "Use ChatGPT for translations right on Google Translate",
"host_permissions": [
"<all_urls>",
"https:\/\/translate.google.com\/*",
"https:\/\/api.openai.com\/*",
"https:\/\/chatgpt-translate-api.huyckkid14-projects.workers.dev\/"
],
"permissions": [
"storage",
"contextMenus",
"scripting"
],
"icons": {
"128": "assets\/icon.png"
},
"action": {
"default_icon": "assets\/icon.png"
},
"web_accessible_resources": [
{
"resources": [
"pages\/translate.html",
"assets\/chatgpt-translate-gmail-video.mp4"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/translate.google.com\/*"
],
"js": [
"content\/translate-ui.js"
],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content\/gmail-translate.js"
],
"run_at": "document_end"
},
{
"matches": [
"<all_urls>"
],
"js": [
"content\/context-menu.js"
],
"run_at": "document_idle",
"all_frames": true
}
]
}