Lemonade
This chrome extension displays a Youtube video dislike count
Что такое Lemonade?
Lemonade - это расширение Chrome, разработанное Pleasant Tech, и его основная функция - "This chrome extension displays a Youtube video dislike count".
Снимки экрана расширения
Скачать файл 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
Основная информация о расширении
Название | |
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" ] } ] } |