Lemonade

This chrome extension displays a Youtube video dislike count

Lemonade क्या है?

Lemonade Pleasant Tech द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This chrome extension displays a Youtube video dislike count"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Lemonade एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Lemonade Lemonade
ID mhhpfoogkccfpmgelmekhghoglpganhp
आधिकारिक URL https://chrome.google.com/webstore/detail/lemonade/mhhpfoogkccfpmgelmekhghoglpganhp
विवरण This chrome extension displays a Youtube video dislike count
फ़ाइल का आकार 23.04 KB
स्थापना संख्या 54
वर्तमान संस्करण 1.0
अंतिम अपडेट 2022-01-01
प्रकाशन तिथि 2022-01-01
रेटिंग 5.00/5 कुल 7 रेटिंग्स
डेवलपर Pleasant Tech
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://twitter.com/pleasantech_
समर्थित भाषाएँ 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"
            ]
        }
    ]
}