Lemonade

This chrome extension displays a Youtube video dislike count

Hvad er Lemonade?

Lemonade er en Chrome-udvidelse udviklet af Pleasant Tech, og dens hovedfunktion er "This chrome extension displays a Youtube video dislike count".

Udvidelsesskærmbilleder

screenshot

Download Lemonade-udvidelses-CRX-fil

Download Lemonade-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

                        This extension adds back the youtube dislike count ,  the youtube dislike count is the first impression of a video, it's our right to be able to view it, this extension allows you do just that                    

Grundlæggende oplysninger om udvidelsen

Navn Lemonade Lemonade
ID mhhpfoogkccfpmgelmekhghoglpganhp
Officiel URL https://chrome.google.com/webstore/detail/lemonade/mhhpfoogkccfpmgelmekhghoglpganhp
Beskrivelse This chrome extension displays a Youtube video dislike count
Filstørrelse 23.04 KB
Antal Installationer 54
Nuværende Version 1.0
Senest Opdateret 2022-01-01
Udgivelsesdato 2022-01-01
Bedømmelse 5.00/5 Samlet 7 Bedømmelser
Udvikler Pleasant Tech
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://twitter.com/pleasantech_
Understøttede Sprog en-US
manifest.json
{
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "logo16.png",
            "32": "logo32.png",
            "48": "logo48.png",
            "128": "logo128.png"
        }
    },
    "icons": {
        "16": "logo16.png",
        "32": "logo32.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "background": {
        "service_worker": "ryd.background.js"
    },
    "content_scripts": [
        {
            "css": [
                "content-style.css"
            ],
            "exclude_matches": [
                "*:\/\/*.music.youtube.com\/*"
            ],
            "js": [
                "ryd.content-script.js"
            ],
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "name": "Lemonade",
    "description": "This chrome extension displays a Youtube video dislike count",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "resources": [
                "ryd.script.js"
            ]
        }
    ]
}