YouTube Progress Bar
Adds a progress bar below YouTube videos
ما هو YouTube Progress Bar؟
YouTube Progress Bar هو إضافة Chrome تم تطويرها بواسطة bggrund، والميزة الرئيسية لها هي "Adds a progress bar below YouTube videos".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Progress Bar
قم بتنزيل ملفات الامتداد YouTube Progress Bar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Adds a permanent progress bar and timestamp beneath YouTube videos and movies Source: https://github.com/bggrund/YouTubeProgressBar
معلومات أساسية عن التمديد
الاسم | YouTube Progress Bar |
ID | gcbpebcnhbpcommcmoiaepfaalanakhh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-progress-bar/gcbpebcnhbpcommcmoiaepfaalanakhh |
الوصف | Adds a progress bar below YouTube videos |
حجم الملف | 5.94 KB |
عدد التثبيتات | 35 |
النسخة الحالية | 1.0 |
آخر تحديث | 2021-07-19 |
تاريخ النشر | 2021-07-18 |
تقييم | 4.25/5 مجموع تقييمات 4 |
المطور | bggrund |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/bggrund/YouTubeProgressBar |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Progress Bar", "version": "1.0", "description": "Adds a progress bar below YouTube videos", "icons": { "128": "128.png" }, "browser_action": { "default_icon": "128.png" }, "permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "time.js" ], "css": [ "time.css" ], "run_at": "document_idle" } ] } |