Don't forget to like
Don't forget to like your favorite videos on youtube.com!
ما هو Don't forget to like؟
Don't forget to like هو إضافة Chrome تم تطويرها بواسطة arismelachroinos، والميزة الرئيسية لها هي "Don't forget to like your favorite videos on youtube.com!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Don't forget to like
قم بتنزيل ملفات الامتداد Don't forget to like بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a simple extension that likes/dislikes Youtube videos that you watch from specific channels that you choose, so you never forget to do it yourself. Once you install the extension, a button will appear bellow every Youtube video you are watching, where you can choose: ● Manual (Default) ● Auto Like ● Auto Dislike This extension does not like/dislike videos that you haven't opened, or videos you have watched in the past. I put a lot of time and effort making this free extension. If you enjoy it and you wish to support me, you can donate via this link: https://www.paypal.com/donate/?hosted_button_id=BTK97P92ZF29U
معلومات أساسية عن التمديد
الاسم | Don't forget to like |
ID | kjkjajiikfcoaibbccgmlnikeekjeaka |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/dont-forget-to-like/kjkjajiikfcoaibbccgmlnikeekjeaka |
الوصف | Don't forget to like your favorite videos on youtube.com! |
حجم الملف | 36.54 KB |
عدد التثبيتات | 18 |
النسخة الحالية | 0.8 |
آخر تحديث | 2022-07-08 |
تاريخ النشر | 2021-10-20 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | arismelachroinos |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://www.freeprivacypolicy.com/live/2c558424-4917-4625-89ff-5f1d72958783 |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Don't forget to like", "version": "0.8", "description": "Don't forget to like your favorite videos on youtube.com!", "background": { "service_worker": "background.js" }, "permissions": [ "storage", "webNavigation" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "content.js" ] } ], "icons": { "128": "icon.png" } } |