Show YouTube comments while watching

Show YouTube comments on the right of the video. Read comments while you watch!

Apa itu Show YouTube comments while watching?

Show YouTube comments while watching adalah ekstensi Chrome yang dikembangkan oleh Tanguy Kurylo, dan fitur utamanya adalah "Show YouTube comments on the right of the video. Read comments while you watch!".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Show YouTube comments while watching

Unduh file ekstensi Show YouTube comments while watching 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

                        ----------
Want to read comments while you watch a YouTube video? Tired of scrolling or pausing just to read comments? We got you.

Comments now appear to the right of the video player, and suggested videos are moved underneath the video player.

----------
[Updates]

Thank you so much for your comments! I do read all of them and appreciate your feedback.

1.0.4
* Fixed the extension breaking due to YouTube layout changes. Thank you all for your quick bug reports.

1.0.3
* Fixed a bug where comments would only swap after refreshing the page.
* Migrated to Manifest V3 (new thingies from Google) before it becomes mandatory. Will be monitoring closely for bugs.                    

Informasi Dasar Ekstensi

Nama Show YouTube comments while watching Show YouTube comments while watching
ID gonknbphdaoahjnamfjpaincammofgae
URL Resmi https://chromewebstore.google.com/detail/show-youtube-comments-whi/gonknbphdaoahjnamfjpaincammofgae
Deskripsi Show YouTube comments on the right of the video. Read comments while you watch!
Ukuran File 7.54 KB
Jumlah Instalasi 13,391
Versi Saat Ini 1.0.4
Terakhir Diperbarui 2022-08-03
Tanggal Publikasi 2019-04-06
Penilaian 4.48/5 Total 91 Penilaian
Pengembang Tanguy Kurylo
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/tanguykurylo/show-youtube-comments
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show YouTube comments while watching",
    "version": "1.0.4",
    "description": "Show YouTube comments on the right of the video. Read comments while you watch!",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "showYoutubeComments.js"
            ],
            "css": [
                "showYoutubeComments.css"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/watch*"
    ],
    "permissions": [
        "scripting",
        "webNavigation",
        "storage"
    ],
    "background": {
        "service_worker": "detectPageChange.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icons": {
            "128": "128.png"
        }
    },
    "icons": {
        "128": "128.png"
    }
}