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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This script replaces the "handle" in the YouTube comments section to user name"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Return YouTube Comment Username एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        "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"
            ]
        }
    ]
}