YouTube Repeat

Repeats a YouTube video

ما هو YouTube Repeat؟

YouTube Repeat هو إضافة Chrome تم تطويرها بواسطة Jimmy Fu، والميزة الرئيسية لها هي "Repeats a YouTube video".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة YouTube Repeat

قم بتنزيل ملفات الامتداد YouTube Repeat بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Minimalistic extension for replaying YouTube videos.

Instructions:
1) Open a YouTube video
2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused)
3) Press it to enable or disable                    

معلومات أساسية عن التمديد

الاسم YouTube Repeat YouTube Repeat
ID bijjfhgimphjklllkmbdapkfemdnhmpj
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj
الوصف Repeats a YouTube video
حجم الملف 24.45 KB
عدد التثبيتات 2,323
النسخة الحالية 1.1
آخر تحديث 2015-10-09
تاريخ النشر 2015-10-08
تقييم 4.37/5 مجموع تقييمات 35
المطور Jimmy Fu
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Repeat",
    "short_name": "Repeat",
    "description": "Repeats a YouTube video",
    "version": "1.1",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Repeat"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs"
    ]
}