Lemonade
This chrome extension displays a Youtube video dislike count
Co to jest Lemonade?
Lemonade to rozszerzenie Chrome opracowane przez Pleasant Tech, a jego główną funkcją jest „This chrome extension displays a Youtube video dislike count”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Lemonade
Pobierz pliki rozszerzeń Lemonade w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | mhhpfoogkccfpmgelmekhghoglpganhp |
Oficjalny URL | https://chrome.google.com/webstore/detail/lemonade/mhhpfoogkccfpmgelmekhghoglpganhp |
Opis | This chrome extension displays a Youtube video dislike count |
Rozmiar pliku | 23.04 KB |
Liczba instalacji | 54 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2022-01-01 |
Data Publikacji | 2022-01-01 |
Ocena | 5.00/5 Łącznie 7 Oceny |
Deweloper | Pleasant Tech |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://twitter.com/pleasantech_ |
Obsługiwane Języki | 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" ] } ] } |