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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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