MultiTranslate
Translate highlighted text
What is MultiTranslate?
MultiTranslate is a Chrome extension developed by Jannis, and its main feature is "Translate highlighted text".
Extension Screenshots
Download MultiTranslate Extension CRX File
Download MultiTranslate extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension is not related to DeepL, Google nor Microsoft. How to translate text: - Mark some text and click on the icon in the upper right corner or - Select some text, right click and select the disired service in the context menu Please note that this addon does not work on chrome-internal pages and chrome.google.com
Extension Basic Information
Name | |
ID | ggfeeabglcmjoaokkomijmbaekfmeocc |
Official URL | https://chrome.google.com/webstore/detail/multitranslate/ggfeeabglcmjoaokkomijmbaekfmeocc |
Description | Translate highlighted text |
File Size | 68.59 KB |
Installation Count | 703 |
Current Version | 2.2.0 |
Last Updated | 2020-04-07 |
Publish Date | 2020-04-06 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Jannis |
[email protected] | |
Payment Type | free |
Supported Languages | de,en,fr,nl,es,it,pl,pt-BR,pt-PT,ru,zh-CN,zh-TW,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "2.2.0", "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "64": "64.png", "96": "96.png", "128": "128.png" }, "permissions": [ "activeTab", "storage", "*:\/\/*\/*", "contextMenus", "webRequest", "webRequestBlocking" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "script.js" ] } ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+Y" }, "description": "Opens DeepL to translate text" } } } |