Comments Sidebar for Youtube
Allows you to watch videos and read comments at the same time on Youtube.
Hvad er Comments Sidebar for Youtube?
Comments Sidebar for Youtube er en Chrome-udvidelse udviklet af tberghuis, og dens hovedfunktion er "Allows you to watch videos and read comments at the same time on Youtube.".
Udvidelsesskærmbilleder
Download Comments Sidebar for Youtube-udvidelses-CRX-fil
Download Comments Sidebar for Youtube-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Comments Sidebar for Youtube |
ID | cgijphidahihhjphcfklefeknhemmdgh |
Officiel URL | https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh |
Beskrivelse | Allows you to watch videos and read comments at the same time on Youtube. |
Filstørrelse | 42.12 KB |
Antal Installationer | 7,932 |
Nuværende Version | 0.6.0 |
Senest Opdateret | 2023-07-24 |
Udgivelsesdato | 2019-09-24 |
Bedømmelse | 4.60/5 Samlet 57 Bedømmelser |
Udvikler | tberghuis |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/tberghuis/watch-and-read-comments-for-youtube |
Hjælpeside-URL | https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues |
Understøttede Sprog | 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\/*" ] } ] } |