Youtube Popup Comments

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

Cos'è Youtube Popup Comments?

Youtube Popup Comments è un'estensione di Chrome sviluppata da Armaan Shah, e la sua funzione principale è "A way to see comments while watching videos, without scrolling away from it".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Popup Comments

Scarica i file di estensione Youtube Popup Comments in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
URL Ufficiale https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
Descrizione A way to see comments while watching videos, without scrolling away from it
Dimensione del File 24.61 KB
Conteggio Installazioni 91
Versione Corrente 1.0
Ultimo Aggiornamento 2021-08-18
Data di Pubblicazione 2021-08-18
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Armaan Shah
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
Lingue Supportate 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"
    }
}