Youtube Popup Comments

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

Qu'est-ce que Youtube Popup Comments ?

Youtube Popup Comments est une extension Chrome développée par Armaan Shah, et sa fonction principale est "A way to see comments while watching videos, without scrolling away from it".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Youtube Popup Comments

Téléchargez les fichiers d'extension Youtube Popup Comments au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
URL Officiel https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
Description A way to see comments while watching videos, without scrolling away from it
Taille du Fichier 24.61 KB
Nombre d'Installations 91
Version Actuelle 1.0
Dernière Mise à Jour 2021-08-18
Date de Publication 2021-08-18
Évaluation 5.00/5 Total 2 Évaluations
Développeur Armaan Shah
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
Langues Prises en Charge 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"
    }
}