MultiTranslate
Translate highlighted text
MultiTranslateとは何ですか?
MultiTranslateはJannisによって開発されたChromeの拡張機能で、その主な機能は「Translate highlighted text」です。
拡張機能のスクリーンショット
MultiTranslate拡張機能のCRXファイルをダウンロード
MultiTranslate拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| ID | ggfeeabglcmjoaokkomijmbaekfmeocc |
| 公式URL | https://chrome.google.com/webstore/detail/multitranslate/ggfeeabglcmjoaokkomijmbaekfmeocc |
| 説明 | Translate highlighted text |
| ファイルサイズ | 68.59 KB |
| インストール数 | 703 |
| 現在のバージョン | 2.2.0 |
| 最終更新日 | 2020-04-07 |
| 公開日 | 2020-04-06 |
| 評価 | 3.00/5 合計 2 レビュー |
| 開発者 | Jannis |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | 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"
}
}
} | |