Lemonade

This chrome extension displays a Youtube video dislike count

什麼是Lemonade?

Lemonade是由Pleasant Tech開發的Chrome擴展程式,該擴展的主要功能是“This chrome extension displays a Youtube video dislike count”。

擴展截圖

screenshot

下載Lemonade擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}