Comments Sidebar for Youtube
Allows you to watch videos and read comments at the same time on Youtube.
Apa itu Comments Sidebar for Youtube?
Comments Sidebar for Youtube adalah ekstensi Chrome yang dikembangkan oleh tberghuis, dan fitur utamanya adalah "Allows you to watch videos and read comments at the same time on Youtube.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Comments Sidebar for Youtube
Unduh file ekstensi Comments Sidebar for Youtube dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Comments Sidebar for Youtube |
ID | cgijphidahihhjphcfklefeknhemmdgh |
URL Resmi | https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh |
Deskripsi | Allows you to watch videos and read comments at the same time on Youtube. |
Ukuran File | 42.12 KB |
Jumlah Instalasi | 7,932 |
Versi Saat Ini | 0.6.0 |
Terakhir Diperbarui | 2023-07-24 |
Tanggal Publikasi | 2019-09-24 |
Penilaian | 4.60/5 Total 57 Penilaian |
Pengembang | tberghuis |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/tberghuis/watch-and-read-comments-for-youtube |
URL Halaman Bantuan | https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues |
Bahasa yang Didukung | 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\/*" ] } ] } |