YouTube Repeater
Repeats YouTube video after it ends.
ما هو YouTube Repeater؟
YouTube Repeater هو إضافة Chrome تم تطويرها بواسطة shogo، والميزة الرئيسية لها هي "Repeats YouTube video after it ends.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Repeater
قم بتنزيل ملفات الامتداد YouTube Repeater بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
You can make your YouTube video repeat automatically right from the page. - No external link - No need for playlists - Repeat infinitely with just 1 click ----- v.0.0.4 ----- Fixed the extension to work with the new YouTube design from fall 2018 ----- v.0.0.3 ----- Fixed the icon to show inactive when on non-youtube pages. ----- v.0.0.2 ----- Fixed icon to show the repeat status when tabs are switched.
معلومات أساسية عن التمديد
الاسم | ![]() |
ID | lgffcdbnficjmckoidgcmcajeadoekgi |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi |
الوصف | Repeats YouTube video after it ends. |
حجم الملف | 16.98 KB |
عدد التثبيتات | 423 |
النسخة الحالية | 0.0.4 |
آخر تحديث | 2019-03-18 |
تاريخ النشر | 2019-03-18 |
تقييم | 3.50/5 مجموع تقييمات 4 |
المطور | shogo |
نوع الدفع | free |
موقع الإضافة | http://shogo.eu/ |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Repeater", "description": "Repeats YouTube video after it ends.", "version": "0.0.4", "manifest_version": 2, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "notifications", "webNavigation" ] } |