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 |
官方網址 | 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 |
電子郵箱 | [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 } |