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
公式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
Eメール [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"
            ]
        }
    ]
}