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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🚀 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! 💬🔗🌟
확장 프로그램 기본 정보
이름 | Transmate: AI-powered Bulk Translator |
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:\/\/*\/*" ] } ] } |