Return YouTube Comment Username

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

¿Qué es Return YouTube Comment Username?

Return YouTube Comment Username es una extensión de Chrome desarrollada por yakisova41, y su función principal es "This script replaces the "handle" in the YouTube comments section to user name".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Return YouTube Comment Username

Descarga archivos de extensión Return YouTube Comment Username en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        "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                    

Información Básica de la Extensión

Nombre Return YouTube Comment Username Return YouTube Comment Username
ID kamibelompadnaekbellinmgbphoidmj
URL Oficial https://chromewebstore.google.com/detail/return-youtube-comment-us/kamibelompadnaekbellinmgbphoidmj
Descripción This script replaces the "handle" in the YouTube comments section to user name
Tamaño del Archivo 14.86 KB
Cantidad de Instalaciones 10,000
Versión Actual 0.4.1
Última Actualización 2024-02-06
Fecha de Publicación 2023-03-11
Calificación 4.23/5 Total de 90 Calificaciones
Desarrollador yakisova41
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://rycu.yakisova.com/
URL de la Página de Ayuda https://github.com/yakisova41/return-youtube-comment-username/issues
Idiomas Soportados 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"
            ]
        }
    ]
}