Polyglot

Enable users to use multi-language in webpages.

什么是Polyglot?

Polyglot是由Two-way translation. Surf the Web Natively in Any Language开发的Chrome扩展程序,该扩展的主要功能是“Enable users to use multi-language in webpages.”。

扩展截图

screenshot
screenshot

下载Polyglot扩展crx文件

下载Polyglot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Surf the web natively in any language. 

Polyglot makes surfing the web in a foreign language just like surfing the net in your own language. 

Foreign language sites will be translated automatically into your native language. Plus any text inputs you make into these foreign language sites in your native language will automatically be translated into that foreign language. 

Now you can use the local version of Google, Ebay, Amazon or any other site whilst travelling or living overseas. 

Additionally non-English speakers can now make use of the vast array of the internet that is only in the English language.                    

扩展基本信息

名称 Polyglot Polyglot
ID hdbcnodefcbojlkaobiahghecgjoiicb
官方URL https://chromewebstore.google.com/detail/polyglot/hdbcnodefcbojlkaobiahghecgjoiicb
简介 Enable users to use multi-language in webpages.
文件大小 645 KB
安装次数 752
当前版本 1.0
更新时间 2019-03-08
上架时间 2019-03-08
评分 3.50/5 共4次评分
开发者 Two-way translation. Surf the Web Natively in Any Language
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Polyglot",
    "description": "Enable users to use multi-language in webpages.",
    "version": "1.0",
    "icons": {
        "128": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "js\/guesslanguage\/_languageData.js",
            "js\/guesslanguage\/guessLanguage.js",
            "js\/translator.js",
            "js\/background.js",
            "js\/jquery-2.1.4.min.js",
            "js\/tabconfig.js",
            "js\/polyglot.js",
            "js\/headers.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/translator.js",
                "js\/jquery-2.1.4.min.js",
                "js\/content.js",
                "js\/tabconfig.js",
                "js\/polyglot.js"
            ],
            "css": [
                "css\/translator.css"
            ],
            "run_at": "document_end"
        }
    ]
}