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
官方網址 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
    }
}