Return YouTube Comment Username

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

Qu'est-ce que Return YouTube Comment Username ?

Return YouTube Comment Username est une extension Chrome développée par yakisova41, et sa fonction principale est "This script replaces the "handle" in the YouTube comments section to user name".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Return YouTube Comment Username

Téléchargez les fichiers d'extension Return YouTube Comment Username au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        "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                    

Informations de Base sur l'Extension

Nom Return YouTube Comment Username Return YouTube Comment Username
ID kamibelompadnaekbellinmgbphoidmj
URL Officiel https://chromewebstore.google.com/detail/return-youtube-comment-us/kamibelompadnaekbellinmgbphoidmj
Description This script replaces the "handle" in the YouTube comments section to user name
Taille du Fichier 14.86 KB
Nombre d'Installations 10,000
Version Actuelle 0.4.1
Dernière Mise à Jour 2024-02-06
Date de Publication 2023-03-11
Évaluation 4.23/5 Total 90 Évaluations
Développeur yakisova41
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://rycu.yakisova.com/
URL de la Page d'Aide https://github.com/yakisova41/return-youtube-comment-username/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}