Youtube Popup Comments

A way to see comments while watching videos, without scrolling away from it

Youtube Popup Comments क्या है?

Youtube Popup Comments Armaan Shah द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A way to see comments while watching videos, without scrolling away from it"।

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

screenshot

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

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

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

                        Ever wanted to read the comments on a YouTube video, without scrolling down to the comments section and missing any of the action?
With this extension, you can.
Simply click on the button added to the top of the YouTube UI (next to the watch later button), and scroll through the comments using the newly created pop-up window that appears on top of your video.
Click on the button again to close the pop-up when you want to focus on your video.                    

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

नाम Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
विवरण A way to see comments while watching videos, without scrolling away from it
फ़ाइल का आकार 24.61 KB
स्थापना संख्या 91
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-08-18
प्रकाशन तिथि 2021-08-18
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Armaan Shah
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Popup Comments",
    "description": "A way to see comments while watching videos, without scrolling away from it",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "css": [
                "popupCommentsStyles.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}