Comments Sidebar for Youtube

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

Vad är Comments Sidebar for Youtube?

Comments Sidebar for Youtube är en Chrome-tillägg utvecklad av tberghuis, och dess huvudfunktion är "Allows you to watch videos and read comments at the same time on Youtube.".

Tilläggsskärmbilder

screenshot

Ladda ner Comments Sidebar for Youtube-förlängningens CRX-fil

Ladda ner Comments Sidebar for Youtube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Comments Sidebar for Youtube Comments Sidebar for Youtube
ID cgijphidahihhjphcfklefeknhemmdgh
Officiell webbadress https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh
Beskrivning Allows you to watch videos and read comments at the same time on Youtube.
Filstorlek 42.12 KB
Antal Installationer 7,932
Aktuell Version 0.6.0
Senast Uppdaterad 2023-07-24
Publiceringsdatum 2019-09-24
Betyg 4.60/5 Totalt 57 Betyg
Utvecklare tberghuis
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/tberghuis/watch-and-read-comments-for-youtube
Hjälpsida URL https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues
Stödda Språk 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\/*"
            ]
        }
    ]
}