Subtitle Translator 🌎

Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷

Subtitle Translator 🌎란 무엇입니까?

Subtitle Translator 🌎은(는) Eugene Gluhotorenko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Subtitle Translator 🌎 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Just hover mouse pointer over a subtitles and get fast translation.

• You can select source and target languages in the options dialog.
• If you don't want to read simple common words in subtitles you can hide them in the options dialog (Useful for language learners).

Platforms supported:
• Netflix
• YouTube
• Kinopub                    

확장 프로그램 기본 정보

이름 Subtitle Translator 🌎 Subtitle Translator 🌎
ID dleflnkkioeajpjokhniiaieonpacano
공식 URL https://chromewebstore.google.com/detail/subtitle-translator-%F0%9F%8C%8E/dleflnkkioeajpjokhniiaieonpacano
설명 Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷
파일 크기 2.86 MB
설치 횟수 3,000
현재 버전 0.3.0
최근 업데이트 2022-05-20
출시 날짜 2020-04-23
평점 4.33/5 총 9 개의 평점
개발자 Eugene Gluhotorenko
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/gevgeny/SubTranslator
도움말 페이지 URL https://github.com/gevgeny/SubTranslator/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Subtitle Translator \ud83c\udf0e",
    "version": "0.3.0",
    "description": "Translate subtitles on Netflix, YouTube, kinopub \ud83c\uddec\ud83c\udde7\ud83c\uddf7\ud83c\uddfa\ud83c\uddea\ud83c\uddf8\ud83c\udde9\ud83c\uddea\ud83c\uddeb\ud83c\uddf7",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "src\/backgroundScript.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png"
        },
        "default_popup": "src\/preferencePopup\/index.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "1024": "icons\/icon1024.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*",
                "*:\/\/*.kino.pub\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "src\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/index.js",
        "src\/index.css"
    ],
    "permissions": [
        "https:\/\/www.netflix.com\/*",
        "https:\/\/kino.pub\/*",
        "https:\/\/www.youtube.com\/*",
        "declarativeContent",
        "storage"
    ]
}