TTFA Repeat or Loop for Youtube Videos

A simple extension to repeat or loop Youtube videos

ما هو TTFA Repeat or Loop for Youtube Videos؟

TTFA Repeat or Loop for Youtube Videos هو إضافة Chrome تم تطويرها بواسطة https://www.techtipsforall.com، والميزة الرئيسية لها هي "A simple extension to repeat or loop Youtube videos".

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

screenshot

تحميل ملف CRX للإضافة TTFA Repeat or Loop for Youtube Videos

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

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

                        A simple extension to repeat or loop Youtube videos from one specific point to another.                    

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

الاسم TTFA Repeat or Loop for Youtube Videos TTFA Repeat or Loop for Youtube Videos
ID bkblfjclpnkdmichcdfnppjdhcpehdag
عنوان URL الرسمي https://chromewebstore.google.com/detail/ttfa-repeat-or-loop-for-y/bkblfjclpnkdmichcdfnppjdhcpehdag
الوصف A simple extension to repeat or loop Youtube videos
حجم الملف 150 KB
عدد التثبيتات 14
النسخة الحالية 1.1
آخر تحديث 2013-11-02
تاريخ النشر 2013-11-02
المطور https://www.techtipsforall.com
نوع الدفع free
عنوان صفحة المساعدة http://www.techtipsforall.com/2013/10/how-to-repeat-or-loop-youtube-videos.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TTFA Repeat or Loop for Youtube Videos",
    "version": "1.1",
    "manifest_version": 2,
    "description": "A simple extension to repeat or loop Youtube videos",
    "icons": {
        "16": "myicon.png",
        "48": "Tech Tips For All_48.png",
        "128": "Tech Tips For All_128.png"
    },
    "browser_action": {
        "default_icon": "myicon.png",
        "default_title": "TTFA Repeat or Loop for Youtube Videos",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com;  object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "pagescript.js",
        "jquery-1.10.2.js"
    ]
}