YouTube Comments

YouTube comments chrome extension

什么是YouTube Comments?

YouTube Comments是由https://tomorrowapps.com开发的Chrome扩展程序,该扩展的主要功能是“YouTube comments chrome extension”。

扩展截图

screenshot
screenshot
screenshot

下载YouTube Comments扩展crx文件

下载YouTube Comments扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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