Comments Sidebar for Youtube

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

Co je Comments Sidebar for Youtube?

Comments Sidebar for Youtube je rozšíření Chrome vyvinuté tberghuis, a jeho hlavní funkcí je „Allows you to watch videos and read comments at the same time on Youtube.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Comments Sidebar for Youtube

Stáhněte si soubory rozšíření Comments Sidebar for Youtube ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Comments Sidebar for Youtube Comments Sidebar for Youtube
ID cgijphidahihhjphcfklefeknhemmdgh
Oficiální URL https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh
Popis Allows you to watch videos and read comments at the same time on Youtube.
Velikost souboru 42.12 KB
Počet instalací 7,932
Aktuální Verze 0.6.0
Poslední Aktualizace 2023-07-24
Datum Vydání 2019-09-24
Hodnocení 4.60/5 Celkem 57 Hodnocení
Vývojář tberghuis
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/tberghuis/watch-and-read-comments-for-youtube
URL Stránky Nápovědy https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues
Podporované Jazyky 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\/*"
            ]
        }
    ]
}