Show YouTube comments while watching

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

Vad är Show YouTube comments while watching?

Show YouTube comments while watching är en Chrome-tillägg utvecklad av Tanguy Kurylo, och dess huvudfunktion är "Show YouTube comments on the right of the video. Read comments while you watch!".

Tilläggsskärmbilder

screenshot

Ladda ner Show YouTube comments while watching-förlängningens CRX-fil

Ladda ner Show YouTube comments while watching-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

                        ----------
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.                    

Grundläggande Information om Tillägg

Namn Show YouTube comments while watching Show YouTube comments while watching
ID gonknbphdaoahjnamfjpaincammofgae
Officiell webbadress https://chromewebstore.google.com/detail/show-youtube-comments-whi/gonknbphdaoahjnamfjpaincammofgae
Beskrivning Show YouTube comments on the right of the video. Read comments while you watch!
Filstorlek 7.54 KB
Antal Installationer 13,391
Aktuell Version 1.0.4
Senast Uppdaterad 2022-08-03
Publiceringsdatum 2019-04-06
Betyg 4.48/5 Totalt 91 Betyg
Utvecklare Tanguy Kurylo
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/tanguykurylo/show-youtube-comments
Stödda Språk 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"
    }
}