Partial Page Translation
Changes the selected text on the browser to a desired language.
What is Partial Page Translation?
Partial Page Translation is a Chrome extension developed by Unknown, and its main feature is "Changes the selected text on the browser to a desired language.".
Download Partial Page Translation Extension CRX File
Download Partial Page Translation 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
Need to translate part of a page (but not the entire thing)? Partial Page Translation is for you. Ideal for people learning languages that need to translate a phrase here or there. Select text, right click, translate. New text will appear on the page itself.
Extension Basic Information
Name | Partial Page Translation |
ID | oigbdcfeaabngmnlneokfcacklmpkofj |
Official URL | https://chromewebstore.google.com/detail/partial-page-translation/oigbdcfeaabngmnlneokfcacklmpkofj |
Description | Changes the selected text on the browser to a desired language. |
File Size | 10.3 KB |
Installation Count | 77 |
Current Version | 1.0 |
Last Updated | 2016-07-11 |
Publish Date | 2016-07-10 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Partial Page Translation", "description": "Changes the selected text on the browser to a desired language.", "version": "1.0", "permissions": [ "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "activeTab" ], "icons": { "16": "16px.png", "48": "48px.png", "128": "128px.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Select Translate", "default_popup": "popup.html" } } |