Phonetify - Phonetic Translator

Translate webpages using phonetic alphabets!

Phonetify - Phonetic Translator란 무엇입니까?

Phonetify - Phonetic Translator은(는) Tim Brown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Translate webpages using phonetic alphabets!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Phonetify - Phonetic Translator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Phonetify translates webpages phonetically.

Phonetify can translate:
From: English, Japanese, Sinhalese, Esperanto
To: Soundscript, IPA, Deseret, Shavian, ARPABET, X-SAMPA                    

확장 프로그램 기본 정보

이름 Phonetify - Phonetic Translator Phonetify - Phonetic Translator
ID ginngbneckjdbhnkgblaccihjheaajbp
공식 URL https://chromewebstore.google.com/detail/phonetify-phonetic-transl/ginngbneckjdbhnkgblaccihjheaajbp
설명 Translate webpages using phonetic alphabets!
파일 크기 1.55 MB
설치 횟수 583
현재 버전 1.0.5
최근 업데이트 2022-10-10
출시 날짜 2020-01-28
평점 4.70/5 총 10 개의 평점
개발자 Tim Brown
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Phonetify - Phonetic Translator",
    "description": "Translate webpages using phonetic alphabets!",
    "version": "1.0.5",
    "permissions": [
        "storage",
        "tabs",
        "management"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "json\/*.json"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 3
}