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
官方網址 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"
            ]
        }
    ]
}