Comment Overlay

Read comments and watch Youtube videos at the same time.

什麼是Comment Overlay?

Comment Overlay是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Read comments and watch Youtube videos at the same time.”。

擴展截圖

screenshot
screenshot

下載Comment Overlay擴展crx文件

下載Comment Overlay擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Comment Overlay allows you to read comments while watching YouTube videos. Comments are shown as an overlay on top the video. You can show/hide comments by clicking the extension button.

Version 1.2
- Dark Mode added.

Version 1.1:
- Theater mode is now supported.

Version 1.0:
- Original release.                    

擴展基本資訊

名稱 Comment Overlay Comment Overlay
ID mjkhjmibjakfenpldlgjogpiebkjliec
官方網址 https://chromewebstore.google.com/detail/comment-overlay/mjkhjmibjakfenpldlgjogpiebkjliec
簡介 Read comments and watch Youtube videos at the same time.
檔案大小 53.86 KB
安裝次數 251
目前版本 1.2
更新時間 2018-11-21
上架時間 2018-11-20
評分 3.83/5 共 6 次評分
開發者 Unknown
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comment Overlay",
    "version": "1.2",
    "web_accessible_resources": [
        "mypage.htm"
    ],
    "description": "Read comments and watch Youtube videos at the same time.",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "exclude_globs": [],
            "include_globs": [
                "https:\/\/www.youtube.com\/watch*?v=*",
                "https:\/\/www.youtube.com\/"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js",
                "popup.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*",
                "https:\/\/www.youtube.com\/"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Comment Overlay",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 2
}