Comments Sidebar for Youtube

Allows you to watch videos and read comments at the same time on Youtube.

Qu'est-ce que Comments Sidebar for Youtube ?

Comments Sidebar for Youtube est une extension Chrome développée par tberghuis, et sa fonction principale est "Allows you to watch videos and read comments at the same time on Youtube.".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Comments Sidebar for Youtube 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

                        Chrome Extension to watch and read comments at the same time on Youtube.

Features a draggable divider to resize the player and the sidebar.

Source code available: https://github.com/tberghuis/watch-and-read-comments-for-youtube                    

Informations de Base sur l'Extension

Nom Comments Sidebar for Youtube Comments Sidebar for Youtube
ID cgijphidahihhjphcfklefeknhemmdgh
URL Officiel https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh
Description Allows you to watch videos and read comments at the same time on Youtube.
Taille du Fichier 42.12 KB
Nombre d'Installations 7,932
Version Actuelle 0.6.0
Dernière Mise à Jour 2023-07-24
Date de Publication 2019-09-24
Évaluation 4.60/5 Total 57 Évaluations
Développeur tberghuis
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/tberghuis/watch-and-read-comments-for-youtube
URL de la Page d'Aide https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comments Sidebar for Youtube",
    "version": "0.6.0",
    "manifest_version": 3,
    "description": "Allows you to watch videos and read comments at the same time on Youtube.",
    "icons": {
        "16": "img\/icon.16.png",
        "32": "img\/icon.32.png",
        "48": "img\/icon.48.png",
        "128": "img\/icon.128.png"
    },
    "author": "tberghuis",
    "homepage_url": "https:\/\/github.com\/tberghuis\/watch-and-read-comments-for-youtube",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "content\/vite.css"
            ],
            "js": [
                "content.js",
                "content\/vite.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject-vite.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}