Transmate: AI-powered Bulk Translator
Transmate provide bulk document processing capability to ChatGPT and Poe.
什么是Transmate: AI-powered Bulk Translator?
Transmate: AI-powered Bulk Translator是由https://transmate.ai开发的Chrome扩展程序,该扩展的主要功能是“Transmate provide bulk document processing capability to ChatGPT and Poe.”。
扩展截图
下载Transmate: AI-powered Bulk Translator扩展crx文件
下载Transmate: AI-powered Bulk Translator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
🚀 Transmate browser extension can be operated on websites like https://chat.openai.com and https://poe.com, and calls upon the site's language models to effortlessly handle bulk translations of your documents. 📚✍️🗃️
🌟 Key Features:
-------------------------------------------
1️⃣ One-click document upload:
Say goodbye to manual operations! Upload your documents with just a single click.
2️⃣ Multiformat Support:
From txt, md, pdf to docx, xlsx and beyond, we've got all your document formats covered.📑📃📄
3️⃣ Subtitle files Processing:
Working on a subtitled project? Transmate helps you process subtitle files with ease. 🎬📽️
4️⃣ ePub eBooks Processing:
Love eBooks? Transmate can handle epub eBooks too! 📖💻
5️⃣ Customize Prompts:
Tailor your experience with customizable prompts. 🖊️🗒️
6️⃣ 100+ Languages:
With support for over 100 natural languages, we're truly making translation a global affair. 🌍🌎🌏
Welcome to Transmate, where language isn't a barrier but a bridge to endless possibilities. Install today and experience global communication like never before! 💬🔗🌟 扩展基本信息
| 名称 | |
| ID | lghfplkciemadbeobmddljkjabhjkcmm |
| 官方URL | https://chromewebstore.google.com/detail/transmate-ai-powered-bulk/lghfplkciemadbeobmddljkjabhjkcmm |
| 简介 | Transmate provide bulk document processing capability to ChatGPT and Poe. |
| 文件大小 | 851 KB |
| 安装次数 | 855 |
| 当前版本 | 2.8.17 |
| 更新时间 | 2023-10-10 |
| 上架时间 | 2023-05-02 |
| 评分 | 3.50/5 共4次评分 |
| 开发者 | https://transmate.ai |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://transmate.ai |
| 隐私政策页面URL | https://transmate.ai/privacy |
| 支持的语言 | de,en,fr,es,it,pl,pt-BR,ru,zh-CN,zh-TW,ja,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Transmate: AI-powered Bulk Translator",
"description": "Transmate provide bulk document processing capability to ChatGPT and Poe.",
"default_locale": "en",
"version": "2.8.17",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"webRequest",
"scripting",
"storage",
"tabs"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https:\/\/chat.openai.com\/*",
"https:\/\/transmate.ai\/*",
"https:\/\/poe.com\/*",
"https:\/\/www.dropbox.com\/*",
"ws:\/\/*\/*",
"wss:\/\/*\/*"
],
"action": {
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/transmate.ai\/*",
"https:\/\/poe.com\/*",
"https:\/\/www.dropbox.com\/*"
],
"js": [
"content_script.js",
"injected.js",
"dropins.js"
],
"css": [
"content_script.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"main.css"
],
"matches": [
"https:\/\/*\/*"
]
},
{
"resources": [
"injected.js",
"dropins.js"
],
"matches": [
"https:\/\/*\/*"
]
}
]
} | |