Youtube Repeat

Save your preference once and it will repeat the video for your favourite songs

ما هو Youtube Repeat؟

Youtube Repeat هو إضافة Chrome تم تطويرها بواسطة mercury200Hg، والميزة الرئيسية لها هي "Save your preference once and it will repeat the video for your favourite songs".

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

screenshot

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

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

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

                        Single repeat choice for all YouTube links.

- Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage.

Icons used are made by Freepick from www.flaticons.com                    

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

الاسم Youtube Repeat Youtube Repeat
ID mbimaenpniemflhmhbahldkfppflbcjh
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh
الوصف Save your preference once and it will repeat the video for your favourite songs
حجم الملف 8.63 KB
عدد التثبيتات 361
النسخة الحالية 1.0.0
آخر تحديث 2017-03-12
تاريخ النشر 2017-03-12
تقييم 4.33/5 مجموع تقييمات 6
المطور mercury200Hg
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Repeat",
    "browser_action": {
        "default_icon": "loop-arrow-32.png",
        "default_popup": "popup.html",
        "default_title": "Click repeat"
    },
    "description": "Save your preference once and it will repeat the video for your favourite songs",
    "icons": {
        "128": "loop-arrow-128.png",
        "32": "loop-arrow-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "*:\/\/*.youtube.com\/*",
        "storage"
    ],
    "version": "1.0.0"
}