Youtube Popup Comments

A way to see comments while watching videos, without scrolling away from it

Co to jest Youtube Popup Comments?

Youtube Popup Comments to rozszerzenie Chrome opracowane przez Armaan Shah, a jego główną funkcją jest „A way to see comments while watching videos, without scrolling away from it”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Youtube Popup Comments

Pobierz pliki rozszerzeń Youtube Popup Comments 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

                        Ever wanted to read the comments on a YouTube video, without scrolling down to the comments section and missing any of the action?
With this extension, you can.
Simply click on the button added to the top of the YouTube UI (next to the watch later button), and scroll through the comments using the newly created pop-up window that appears on top of your video.
Click on the button again to close the pop-up when you want to focus on your video.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
Oficjalny URL https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
Opis A way to see comments while watching videos, without scrolling away from it
Rozmiar pliku 24.61 KB
Liczba instalacji 91
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-08-18
Data Publikacji 2021-08-18
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Armaan Shah
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Popup Comments",
    "description": "A way to see comments while watching videos, without scrolling away from it",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "css": [
                "popupCommentsStyles.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}