Comments Sidebar for Youtube
Allows you to watch videos and read comments at the same time on Youtube.
Cos'è Comments Sidebar for Youtube?
Comments Sidebar for Youtube è un'estensione di Chrome sviluppata da tberghuis, e la sua funzione principale è "Allows you to watch videos and read comments at the same time on Youtube.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Comments Sidebar for Youtube
Scarica i file di estensione Comments Sidebar for Youtube in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Comments Sidebar for Youtube |
ID | cgijphidahihhjphcfklefeknhemmdgh |
URL Ufficiale | https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh |
Descrizione | Allows you to watch videos and read comments at the same time on Youtube. |
Dimensione del File | 42.12 KB |
Conteggio Installazioni | 7,932 |
Versione Corrente | 0.6.0 |
Ultimo Aggiornamento | 2023-07-24 |
Data di Pubblicazione | 2019-09-24 |
Valutazione | 4.60/5 Totale 57 Valutazioni |
Sviluppatore | tberghuis |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/tberghuis/watch-and-read-comments-for-youtube |
URL della Pagina di Aiuto | https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues |
Lingue Supportate | 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\/*" ] } ] } |