Lemonade
This chrome extension displays a Youtube video dislike count
Apa itu Lemonade?
Lemonade adalah ekstensi Chrome yang dikembangkan oleh Pleasant Tech, dan fitur utamanya adalah "This chrome extension displays a Youtube video dislike count".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Lemonade
Unduh file ekstensi Lemonade dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | mhhpfoogkccfpmgelmekhghoglpganhp |
URL Resmi | https://chrome.google.com/webstore/detail/lemonade/mhhpfoogkccfpmgelmekhghoglpganhp |
Deskripsi | This chrome extension displays a Youtube video dislike count |
Ukuran File | 23.04 KB |
Jumlah Instalasi | 54 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2022-01-01 |
Tanggal Publikasi | 2022-01-01 |
Penilaian | 5.00/5 Total 7 Penilaian |
Pengembang | Pleasant Tech |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://twitter.com/pleasantech_ |
Bahasa yang Didukung | 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" ] } ] } |