Partial Page Translation
Changes the selected text on the browser to a desired language.
什么是Partial Page Translation?
Partial Page Translation是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Changes the selected text on the browser to a desired language.”。
下载Partial Page Translation扩展crx文件
下载Partial Page Translation扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Partial Page Translation |
ID | oigbdcfeaabngmnlneokfcacklmpkofj |
官方URL | https://chromewebstore.google.com/detail/partial-page-translation/oigbdcfeaabngmnlneokfcacklmpkofj |
简介 | Changes the selected text on the browser to a desired language. |
文件大小 | 10.3 KB |
安装次数 | 77 |
当前版本 | 1.0 |
更新时间 | 2016-07-11 |
上架时间 | 2016-07-10 |
评分 | 3.00/5 共2次评分 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | 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" } } |