YouTube Comments

YouTube comments chrome extension

YouTube Comments क्या है?

YouTube Comments https://tomorrowapps.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "YouTube comments chrome extension"।

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

screenshot
screenshot
screenshot

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

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

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

                        YTC Extension makes youtube comments reading easier. This allows users to go directly to the comment section and read them right away. Most users who already watched a certain video want to read comments right away but waiting for the video to load so they can pause it is a hassle. YTC automates that process and makes it easier for the user. YTC is very useful for youtubers, channels owners, subscibers and even for trolls who are looking for jokes in the comment section.

Have fun!                    

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

नाम YouTube Comments YouTube Comments
ID egbebnjiaigjekepcalpcjeckiepebgl
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-comments/egbebnjiaigjekepcalpcjeckiepebgl
विवरण YouTube comments chrome extension
फ़ाइल का आकार 924 KB
स्थापना संख्या 23
वर्तमान संस्करण 1.0
अंतिम अपडेट 2018-07-08
प्रकाशन तिथि 2018-07-08
रेटिंग 2.50/5 कुल 2 रेटिंग्स
डेवलपर https://tomorrowapps.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://tomorrowapps.com/ytc
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Comments",
    "short_name": "YTC Extension",
    "version": "1.0",
    "description": "YouTube comments chrome extension",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent",
        "storage",
        "webRequest",
        "*:\/\/*.youtube.com\/*",
        "webRequestBlocking"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "libs\/jquery.min.js",
                "content.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/i16f.png",
            "32": "images\/i32f.png",
            "48": "images\/i48f.png",
            "128": "images\/i128f.png"
        }
    },
    "icons": {
        "16": "images\/i16f.png",
        "32": "images\/i32f.png",
        "48": "images\/i48f.png",
        "128": "images\/i128f.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}