Lemonade

This chrome extension displays a Youtube video dislike count

Lemonadeคืออะไร?

Lemonade เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pleasant Tech และคุณลักษณะหลักของมันคือ "This chrome extension displays a Youtube video dislike count"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lemonade

ดาวน์โหลดไฟล์ส่วนขยาย Lemonade ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}