Translate
Just Translate
What is Translate?
Translate is a Chrome extension developed by DataFactory, and its main feature is "Just Translate".
Extension Screenshots
Download Translate Extension CRX File
Download Translate 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
This small extension provide a inline translation for selected text. It works on double click and through "Alt+T" shortcut. It powered by Yandex.Translate
Extension Basic Information
Name | |
ID | nimjhahjkembhijmhelpgjbofphamdej |
Official URL | https://chrome.google.com/webstore/detail/translate/nimjhahjkembhijmhelpgjbofphamdej |
Description | Just Translate |
File Size | 28.37 KB |
Installation Count | 213 |
Current Version | 0.1.2 |
Last Updated | 2015-10-12 |
Publish Date | 2015-10-12 |
Rating | 1.00/5 Total 1 Ratings |
Developer | DataFactory |
Payment Type | free |
Supported Languages | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Translate", "version": "0.1.2", "default_locale": "en", "description": "Just Translate", "icons": { "16": "img\/16.png", "128": "img\/128.png" }, "browser_action": { "default_icon": { "19": "img\/19.png", "38": "img\/38.png" }, "default_title": "Translate", "default_popup": "popup.html" }, "background": { "scripts": [ "app.js" ], "persistent": false }, "permissions": [ "activeTab", "contextMenus", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "translateTooltip.css" ], "js": [ "translate.js" ] } ] } |