Lemonade

This chrome extension displays a Youtube video dislike count

What is Lemonade?

Lemonade is a Chrome extension developed by Pleasant Tech, and its main feature is "This chrome extension displays a Youtube video dislike count".

Extension Screenshots

screenshot

Download Lemonade Extension CRX File

Download Lemonade extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Lemonade Lemonade
ID mhhpfoogkccfpmgelmekhghoglpganhp
Official URL https://chrome.google.com/webstore/detail/lemonade/mhhpfoogkccfpmgelmekhghoglpganhp
Description This chrome extension displays a Youtube video dislike count
File Size 23.04 KB
Installation Count 54
Current Version 1.0
Last Updated 2022-01-01
Publish Date 2022-01-01
Rating 5.00/5 Total 7 Ratings
Developer Pleasant Tech
Email [email protected]
Payment Type free
Help Page URL https://twitter.com/pleasantech_
Supported Languages 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"
            ]
        }
    ]
}