Translator
Translate selected text on web page in google translate
What is Translator?
Translator is a Chrome extension developed by poqdev, and its main feature is "Translate selected text on web page in google translate".
Extension Screenshots
Download Translator Extension CRX File
Download Translator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
If you are want to translate some text on web page you just can right click on this text and choose "translate" and google translate site will be opened and your phrase will be translated.
Extension Basic Information
Name | Translator |
ID | igmlicaoohkobcmkccokekdfidmbhpof |
Official URL | https://chromewebstore.google.com/detail/translator/igmlicaoohkobcmkccokekdfidmbhpof |
Description | Translate selected text on web page in google translate |
File Size | 108 KB |
Installation Count | 148 |
Current Version | 0.8.1 |
Last Updated | 2020-05-02 |
Publish Date | 2020-05-01 |
Developer | poqdev |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://poqdev.com/privacity |
Supported Languages | en,ca,es,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Translator", "description": "Translate selected text on web page in google translate", "version": "0.8.1", "permissions": [ "contextMenus", "storage", "notifications" ], "icons": { "16": "icons\/translate-16.png", "32": "icons\/translate-32.png", "64": "icons\/translate-64.png", "128": "icons\/translate-128.png", "256": "icons\/translate-256.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true }, "default_locale": "en" } |