Comments Sidebar for Youtube

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

Wat is Comments Sidebar for Youtube?

Comments Sidebar for Youtube is een Chrome-extensie ontwikkeld door tberghuis, en de belangrijkste functie is "Allows you to watch videos and read comments at the same time on Youtube.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Comments Sidebar for Youtube

Download Comments Sidebar for Youtube-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Comments Sidebar for Youtube Comments Sidebar for Youtube
ID cgijphidahihhjphcfklefeknhemmdgh
Officiële URL https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh
Beschrijving Allows you to watch videos and read comments at the same time on Youtube.
Bestandsgrootte 42.12 KB
Aantal Installaties 7,932
Huidige Versie 0.6.0
Laatst Bijgewerkt 2023-07-24
Publicatiedatum 2019-09-24
Beoordeling 4.60/5 Totaal 57 Beoordelingen
Ontwikkelaar tberghuis
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/tberghuis/watch-and-read-comments-for-youtube
Help Pagina-URL https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}