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 Partial Page Translation
ID oigbdcfeaabngmnlneokfcacklmpkofj
官方網址 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"
    }
}