Google Translate Right Click
Add a context menu item to translate for selected text at Google Translate.
Google Translate Right Clickとは何ですか?
Google Translate Right Clickはhttps://sites.google.com/site/tientxによって開発されたChromeの拡張機能で、その主な機能は「Add a context menu item to translate for selected text at Google Translate.」です。
拡張機能のスクリーンショット
Google Translate Right Click拡張機能のCRXファイルをダウンロード
Google Translate Right Click拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Support multi-language via Google Translate
拡張機能の基本情報
名前 | Google Translate Right Click |
ID | blbkkgcankcmdleleianggnfooalbjof |
公式URL | https://chromewebstore.google.com/detail/google-translate-right-cl/blbkkgcankcmdleleianggnfooalbjof |
説明 | Add a context menu item to translate for selected text at Google Translate. |
ファイルサイズ | 29.05 KB |
インストール数 | 1,442 |
現在のバージョン | 0.83 |
最終更新日 | 2020-07-14 |
公開日 | 2020-06-28 |
評価 | 4.50/5 合計 10 レビュー |
開発者 | https://sites.google.com/site/tientx |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "script.js", "js\/common\/languages.js" ] }, "browser_action": { "default_icon": { "128": "googletranslate_128x128.png" }, "default_popup": "options.html", "default_title": "Select the text you would like to translate, right mouse click and choose Google Translate" }, "content_scripts": [ { "all_frames": true, "js": [ "js\/common\/languages.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "description": "Add a context menu item to translate for selected text at Google Translate.", "icons": { "128": "googletranslate_128x128.png" }, "options_page": "options.html", "minimum_chrome_version": "6", "name": "Google Translate Right Click", "permissions": [ "contextMenus", "windows", "storage", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "version": "0.83", "manifest_version": 2 } |