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
电子邮箱 [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"
            ]
        }
    ]
}