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ファイルをダウンロード

Return YouTube Comment Username拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        "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
Eメール [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"
            ]
        }
    ]
}