Open Translator
Quick access to Google Translate
Open Translator란 무엇입니까?
Open Translator은(는) artar9404에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quick access to Google Translate"입니다.
확장 프로그램 스크린샷
Open Translator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Provides quick access to Google Translate, allowing you to immediately translate selected text from the current webpage to another language. Features: * Select to translate * Reverse translation * Smart language pair recognition * Possibility to use as standalone window * Open source https://github.com/tarcode-apps/open-translator
확장 프로그램 기본 정보
이름 | Open Translator |
ID | cgllihjilejnolgcflldbmjdkjgdgfaa |
공식 URL | https://chromewebstore.google.com/detail/open-translator/cgllihjilejnolgcflldbmjdkjgdgfaa |
설명 | Quick access to Google Translate |
파일 크기 | 237 KB |
설치 횟수 | 715 |
현재 버전 | 1.4 |
최근 업데이트 | 2022-06-03 |
출시 날짜 | 2021-11-16 |
평점 | 4.75/5 총 4 개의 평점 |
개발자 | artar9404 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/tarcode-apps/open-translator |
지원되는 언어 | en,ru,uk |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "version": "1.4", "author": "Artem Tarasov", "description": "__MSG_appDescription__", "homepage_url": "https:\/\/github.com\/tarcode-apps\/open-translator", "default_locale": "en", "permissions": [ "storage", "activeTab", "contextMenus" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": { "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-hashes' 'sha256-2FkMoYIfUwhaMVsbQnfoAJc8+Qzt0TC1GWOTrODFyNE='; connect-src https:\/\/translate.googleapis.com" }, "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end", "all_frames": true, "js": [ "content.js" ] } ], "action": { "default_popup": "popup.html", "default_title": "__MSG_appTitle__" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Q", "mac": "MacCtrl+Shift+Q" }, "description": "__MSG_openShortcut__" }, "translate_page": { "suggested_key": { "default": "Alt+Q", "mac": "Alt+Shift+Q" }, "description": "__MSG_translatePage__" } } } |