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"
        }
    ]
}