Right Click Translate
Right Click to translate selected text into a new Tab using Google Translate
Right Click Translate란 무엇입니까?
Right Click Translate은(는) ndingar33에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Right Click to translate selected text into a new Tab using Google Translate"입니다.
확장 프로그램 스크린샷
Right Click Translate 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This handy extension helps user to translate selected text into a new chrome tab via context menu. Unlike other in-place translation extensions, this extension keeps the original webpage clean and untouched. It also provides ability to let user choose a prefered target language. *1.9.2 fix bug and add create Post for twitter, facebook, reddit
확장 프로그램 기본 정보
이름 | Right Click Translate |
ID | piojkjkndneggfaibepkmabjnkjlhlmk |
공식 URL | https://chromewebstore.google.com/detail/right-click-translate/piojkjkndneggfaibepkmabjnkjlhlmk |
설명 | Right Click to translate selected text into a new Tab using Google Translate |
파일 크기 | 75 KB |
설치 횟수 | 102,715 |
현재 버전 | 1.9.2 |
최근 업데이트 | 2024-01-02 |
출시 날짜 | 2018-07-04 |
평점 | 4.25/5 총 93 개의 평점 |
개발자 | ndingar33 |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.termsfeed.com/live/0bc575cf-9744-4219-93c1-62d012278d21 |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Right Click Translate", "description": "Right Click to translate selected text into a new Tab using Google Translate", "version": "1.9.2", "manifest_version": 3, "icons": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "action": { "default_popup": "src\/popup.html" }, "options_ui": { "page": "src\/options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*", "*:\/\/twitter.com\/*", "*:\/\/*.reddit.com\/*", "*:\/\/*.google.com\/*" ], "js": [ "src\/content.js" ], "css": [ "style.css" ] } ], "permissions": [ "contextMenus", "storage", "declarativeNetRequest" ], "host_permissions": [ "*:\/\/*.facebook.com\/*", "*:\/\/twitter.com\/*", "*:\/\/*.reddit.com\/*" ], "background": { "service_worker": "src\/background.js" } } |