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
官方URL 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
}