Comment Overlay

Read comments and watch Youtube videos at the same time.

Co to jest Comment Overlay?

Comment Overlay to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Read comments and watch Youtube videos at the same time.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Comment Overlay

Pobierz pliki rozszerzeń Comment Overlay w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Comment Overlay Comment Overlay
ID mjkhjmibjakfenpldlgjogpiebkjliec
Oficjalny URL https://chromewebstore.google.com/detail/comment-overlay/mjkhjmibjakfenpldlgjogpiebkjliec
Opis Read comments and watch Youtube videos at the same time.
Rozmiar pliku 53.86 KB
Liczba instalacji 251
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2018-11-21
Data Publikacji 2018-11-20
Ocena 3.83/5 Łącznie 6 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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
}