YouTube Comments

YouTube comments chrome extension

What is YouTube Comments?

YouTube Comments is a Chrome extension developed by https://tomorrowapps.com, and its main feature is "YouTube comments chrome extension".

Extension Screenshots

screenshot
screenshot
screenshot

Download YouTube Comments Extension CRX File

Download YouTube Comments extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name YouTube Comments YouTube Comments
ID egbebnjiaigjekepcalpcjeckiepebgl
Official URL https://chromewebstore.google.com/detail/youtube-comments/egbebnjiaigjekepcalpcjeckiepebgl
Description YouTube comments chrome extension
File Size 924 KB
Installation Count 23
Current Version 1.0
Last Updated 2018-07-08
Publish Date 2018-07-08
Rating 2.50/5 Total 2 Ratings
Developer https://tomorrowapps.com
Email [email protected]
Payment Type free
Extension Website https://tomorrowapps.com/ytc
Supported Languages 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
    }
}