YouTube™ Comment Translate

Automatically translate YouTube comments using the Google-Translate API

YouTube™ Comment Translate란 무엇입니까?

YouTube™ Comment Translate은(는) toluschr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically translate YouTube comments using the Google-Translate API"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

YouTube™ Comment Translate 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows the user to translate YouTube comments with the click of a single button, right next to the comment. This is useful, i.e. when listening to music from other countries. The sourcecode is openly available on GitHub.                    

확장 프로그램 기본 정보

이름 YouTube™ Comment Translate YouTube™ Comment Translate
ID alaejlmlpgcffloicejpccebbeeibemo
공식 URL https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo
설명 Automatically translate YouTube comments using the Google-Translate API
파일 크기 35.86 KB
설치 횟수 36,447
현재 버전 1.2.4
최근 업데이트 2024-02-02
출시 날짜 2020-11-26
평점 4.41/5 총 91 개의 평점
개발자 toluschr
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/toluschr/Youtube-Comment-Translate
도움말 페이지 URL https://github.com/toluschr/YouTube-Comment-Translate/issues/new
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube\u2122 Comment Translate",
    "version": "1.2.4",
    "description": "Automatically translate YouTube comments using the Google-Translate API",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "manifest_version": 3,
    "content_security_policy": [],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ]
}