Return YouTube Comment Username

This script replaces the "handle" in the YouTube comments section to user name

Return YouTube Comment Username란 무엇입니까?

Return YouTube Comment Username은(는) yakisova41에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This script replaces the "handle" in the YouTube comments section to user name"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Return YouTube Comment Username 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        "Return YouTube Comment Username" returns the comment username to its traditional username format.

With YouTube's update, "handle" (user IDs starting with @) are now displayed in the name field of the comments section, and traditional usernames are no longer visible in the comments.

This extension will replace the "handle" in the video comments section, community comments section, and the comments section of the top notification with your old username.

If you find any bugs or problems, please feel free to submit an Issue on Github.
https://github.com/yakisova41/return-youtube-comment-username/issues                    

확장 프로그램 기본 정보

이름 Return YouTube Comment Username Return YouTube Comment Username
ID kamibelompadnaekbellinmgbphoidmj
공식 URL https://chromewebstore.google.com/detail/return-youtube-comment-us/kamibelompadnaekbellinmgbphoidmj
설명 This script replaces the "handle" in the YouTube comments section to user name
파일 크기 14.86 KB
설치 횟수 10,000
현재 버전 0.4.1
최근 업데이트 2024-02-06
출시 날짜 2023-03-11
평점 4.23/5 총 90 개의 평점
개발자 yakisova41
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://rycu.yakisova.com/
도움말 페이지 URL https://github.com/yakisova41/return-youtube-comment-username/issues
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_Name__",
    "short_name": "name",
    "version": "0.4.1",
    "manifest_version": 3,
    "description": "__MSG_Description__",
    "default_locale": "en",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "resources": [
                "embed.js"
            ]
        }
    ]
}