Tube comments

Enables custom disqus youtube comments

Hvad er Tube comments?

Tube comments er en Chrome-udvidelse udviklet af Suriya, og dens hovedfunktion er "Enables custom disqus youtube comments".

Udvidelsesskærmbilleder

screenshot

Download Tube comments-udvidelses-CRX-fil

Download Tube comments-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

                        If you ever faced "Comments are turned off"  on any Youtube videos don't worry you can still comment using this chrome extension via Disqus comments community from the same youtube page itself cool right..!                    

Grundlæggende oplysninger om udvidelsen

Navn Tube comments Tube comments
ID ojjglcjjkhpgbelpkikcfembbacpokoc
Officiel URL https://chromewebstore.google.com/detail/tube-comments/ojjglcjjkhpgbelpkikcfembbacpokoc
Beskrivelse Enables custom disqus youtube comments
Filstørrelse 13.4 KB
Antal Installationer 13
Nuværende Version 0.1
Senest Opdateret 2020-08-06
Udgivelsesdato 2020-08-06
Udvikler Suriya
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tube comments",
    "description": "Enables custom disqus youtube comments",
    "version": "0.1",
    "icons": {
        "16": "comment.png",
        "48": "comment.png",
        "128": "comment.png"
    },
    "browser_action": {
        "default_icon": "comment.png",
        "default_popup": "content.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "extension.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}