Return YouTube Comment Username

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

Co je Return YouTube Comment Username?

Return YouTube Comment Username je rozšíření Chrome vyvinuté yakisova41, a jeho hlavní funkcí je „This script replaces the "handle" in the YouTube comments section to user name“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Return YouTube Comment Username

Stáhněte si soubory rozšíření Return YouTube Comment Username ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        "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                    

Základní Informace o Rozšíření

Název Return YouTube Comment Username Return YouTube Comment Username
ID kamibelompadnaekbellinmgbphoidmj
Oficiální URL https://chromewebstore.google.com/detail/return-youtube-comment-us/kamibelompadnaekbellinmgbphoidmj
Popis This script replaces the "handle" in the YouTube comments section to user name
Velikost souboru 14.86 KB
Počet instalací 10,000
Aktuální Verze 0.4.1
Poslední Aktualizace 2024-02-06
Datum Vydání 2023-03-11
Hodnocení 4.23/5 Celkem 90 Hodnocení
Vývojář yakisova41
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://rycu.yakisova.com/
URL Stránky Nápovědy https://github.com/yakisova41/return-youtube-comment-username/issues
Podporované Jazyky 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"
            ]
        }
    ]
}