Panlatin

Display non-Latin texts with Latin letters and add pronouncing details

Panlatin란 무엇입니까?

Panlatin은(는) https://panlatin.blogspot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display non-Latin texts with Latin letters and add pronouncing details"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Panlatin 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Panlatin Browser Extension for Romanization and Detailing

So you know a bit of many languages and you don't have time to be really fluent?
While reading the web, the computer can show texts in Latin letters next to native words or instead of them. If dictionary is available, translations can be shown, too.

Chinese: 中国Zhōngguó 位于wèiyù 东亚Dōngyà。
Russian: Stolitsa Rossii - Moskva.
Arabic has only transliteration, no dictionary for vowels is available: from "يتدفق النيل عبر مصر." to "ītdfq ālnīl ʻbr mṣr.".

Several display formats and translitaration systems are available. See description at http://panlatin.blogspot.si/2017/04/panlatin-browser-extension.html                    

확장 프로그램 기본 정보

이름 Panlatin Panlatin
ID hpadbjjcicmlnnkkgclemlpkmicekiji
공식 URL https://chromewebstore.google.com/detail/panlatin/hpadbjjcicmlnnkkgclemlpkmicekiji
설명 Display non-Latin texts with Latin letters and add pronouncing details
파일 크기 4.36 MB
설치 횟수 305
현재 버전 2.4
최근 업데이트 2018-07-26
출시 날짜 2018-07-26
평점 4.00/5 총 6 개의 평점
개발자 https://panlatin.blogspot.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://panlatin.blogspot.si/2017/04/panlatin-browser-extension.html
도움말 페이지 URL http://panlatin.blogspot.si/2017/12/panlatin-support.html
지원되는 언어 de,en,fr,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Panlatin",
    "version": "2.4",
    "default_locale": "en",
    "description": "__MSG_popupDescTitle__",
    "browser_action": {
        "default_icon": {
            "16": "panlatin16.png",
            "19": "panlatin19.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_popupDesc__"
    },
    "icons": {
        "16": "panlatin16.png",
        "128": "panlatin128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "clipboardWrite",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "base.js",
            "DomAnnotator.js",
            "TranslitTable.js",
            "Translitor.js",
            "PanlatinLib.js",
            "background.js",
            "dict\/dict_en1.js",
            "dict\/dict_en2.js",
            "dict\/dict_zh1.js",
            "dict\/dict_zh2.js",
            "dict\/dict_zh3.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "DomAnnotator.css"
            ],
            "js": [
                "base.js",
                "Dom2.js",
                "DomAnnotator.js",
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "chrome_style": true
    }
}