Show YouTube comments while watching

Show YouTube comments on the right of the video. Read comments while you watch!

Show YouTube comments while watching क्या है?

Show YouTube comments while watching Tanguy Kurylo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show YouTube comments on the right of the video. Read comments while you watch!"।

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

screenshot

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

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

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

                        ----------
Want to read comments while you watch a YouTube video? Tired of scrolling or pausing just to read comments? We got you.

Comments now appear to the right of the video player, and suggested videos are moved underneath the video player.

----------
[Updates]

Thank you so much for your comments! I do read all of them and appreciate your feedback.

1.0.4
* Fixed the extension breaking due to YouTube layout changes. Thank you all for your quick bug reports.

1.0.3
* Fixed a bug where comments would only swap after refreshing the page.
* Migrated to Manifest V3 (new thingies from Google) before it becomes mandatory. Will be monitoring closely for bugs.                    

एक्सटेंशन की मूल जानकारी

नाम Show YouTube comments while watching Show YouTube comments while watching
ID gonknbphdaoahjnamfjpaincammofgae
आधिकारिक URL https://chromewebstore.google.com/detail/show-youtube-comments-whi/gonknbphdaoahjnamfjpaincammofgae
विवरण Show YouTube comments on the right of the video. Read comments while you watch!
फ़ाइल का आकार 7.54 KB
स्थापना संख्या 13,391
वर्तमान संस्करण 1.0.4
अंतिम अपडेट 2022-08-03
प्रकाशन तिथि 2019-04-06
रेटिंग 4.48/5 कुल 91 रेटिंग्स
डेवलपर Tanguy Kurylo
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/tanguykurylo/show-youtube-comments
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show YouTube comments while watching",
    "version": "1.0.4",
    "description": "Show YouTube comments on the right of the video. Read comments while you watch!",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "showYoutubeComments.js"
            ],
            "css": [
                "showYoutubeComments.css"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/watch*"
    ],
    "permissions": [
        "scripting",
        "webNavigation",
        "storage"
    ],
    "background": {
        "service_worker": "detectPageChange.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icons": {
            "128": "128.png"
        }
    },
    "icons": {
        "128": "128.png"
    }
}