YTex YouTube Extension

Adds more controls to youtube html5 player

ما هو YTex YouTube Extension؟

YTex YouTube Extension هو إضافة Chrome تم تطويرها بواسطة SeKa، والميزة الرئيسية لها هي "Adds more controls to youtube html5 player".

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

screenshot

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

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

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

                        Die Extension fügt dem HTML5 Player auf YouTube zwei weitere Buttons hinzu, mit denen man 10 Sekunden vor oder zurück springen kann.

The Extension adds two buttons to the YouTube control bar with which you can skip the next 10 seconds or rewind 10 seconds                    

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

الاسم YTex YouTube Extension YTex YouTube Extension
ID mllojahkjeoinmhcinbcnkleeefdohbm
عنوان URL الرسمي https://chrome.google.com/webstore/detail/ytex-youtube-extension/mllojahkjeoinmhcinbcnkleeefdohbm
الوصف Adds more controls to youtube html5 player
حجم الملف 33.74 KB
عدد التثبيتات 51
النسخة الحالية 1.2
آخر تحديث 2020-07-08
تاريخ النشر 2017-09-18
تقييم 3.67/5 مجموع تقييمات 3
المطور SeKa
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YTex YouTube Extension",
    "description": "Adds more controls to youtube html5 player",
    "version": "1.2",
    "browser_action": {
        "default_icon": "ytex128.png"
    },
    "icons": {
        "16": "ytex16.png",
        "48": "ytex48.png",
        "128": "ytex128.png"
    },
    "web_accessible_resources": [
        "Forward.png",
        "Rewind.png"
    ],
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "ytex.css"
            ],
            "js": [
                "ytex.js"
            ],
            "run_at": "document_end"
        }
    ]
}