Random color for YouTube's progress bar
Change red color for a random of the YouTube's progress bar
ما هو Random color for YouTube's progress bar؟
Random color for YouTube's progress bar هو إضافة Chrome تم تطويرها بواسطة Axel Juino، والميزة الرئيسية لها هي "Change red color for a random of the YouTube's progress bar".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Random color for YouTube's progress bar
قم بتنزيل ملفات الامتداد Random color for YouTube's progress bar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension change the video's progress bar on YouTube with a random color.
معلومات أساسية عن التمديد
الاسم | Random color for YouTube's progress bar |
ID | nifjmcelpmkfkofnmllhjhphjlhpdckn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/random-color-for-youtubes/nifjmcelpmkfkofnmllhjhphjlhpdckn |
الوصف | Change red color for a random of the YouTube's progress bar |
حجم الملف | 25.48 KB |
عدد التثبيتات | 610 |
النسخة الحالية | 1.1 |
آخر تحديث | 2020-12-21 |
تاريخ النشر | 2020-11-29 |
تقييم | 4.00/5 مجموع تقييمات 5 |
المطور | Axel Juino |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://axelouuu.fr |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Random color for YouTube's progress bar", "description": "Change red color for a random of the YouTube's progress bar", "version": "1.1", "content_scripts": [ { "js": [ "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": "img\/icon.png", "default_popup": "popup.html" }, "icons": { "128": "img\/icon_128.png" }, "background": { "scripts": [ "script.js" ] } } |