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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } ] } |