YouTube TC AutoTrans Corrector

Corrected the issue that prevented the proper display of YouTube's automatic translation in Traditional Chinese.

YouTube TC AutoTrans Corrector란 무엇입니까?

YouTube TC AutoTrans Corrector은(는) 遠創에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Corrected the issue that prevented the proper display of YouTube's automatic translation in Traditional Chinese."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube TC AutoTrans Corrector 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The options in the subtitles menu will be modified to "Corrected Chinese (Traditional)" when your YouTube language is set to Chinese (Traditional). However, the modification will still take effect without the "Corrected" tag.

If you'd like to support me in maintaining/producing higher-quality content, perhaps consider buying me a cup of coffee!
https://www.buymeacoffee.com/yuanchuang

You can also download it on Firefox:
https://addons.mozilla.org/zh-TW/firefox/addon/youtube-繁體自動翻譯修正/

GitHub Repository:
https://github.com/Frank0945/fix-yt-traditional-chinese-subtitle                    

확장 프로그램 기본 정보

이름 YouTube TC AutoTrans Corrector YouTube TC AutoTrans Corrector
ID nghlhmhjdlbcgnmjffpeialapbcnajig
공식 URL https://chromewebstore.google.com/detail/youtube-tc-autotrans-corr/nghlhmhjdlbcgnmjffpeialapbcnajig
설명 Corrected the issue that prevented the proper display of YouTube's automatic translation in Traditional Chinese.
파일 크기 470 KB
설치 횟수 20,000
현재 버전 1.0.9
최근 업데이트 2024-01-08
출시 날짜 2023-11-22
평점 4.94/5 총 129 개의 평점
개발자 遠創
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Frank0945/fix-yt-traditional-chinese-subtitle
도움말 페이지 URL https://github.com/Frank0945/fix-yt-traditional-chinese-subtitle
지원되는 언어 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.0.9",
    "icons": {
        "128": "128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/youtube.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/injected.js"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/youtube.com\/*"
            ]
        }
    ]
}