YouTube Repeat Button

YouTube Repeat Button.

ما هو YouTube Repeat Button؟

YouTube Repeat Button هو إضافة Chrome تم تطويرها بواسطة Vladislav Tupikin، والميزة الرئيسية لها هي "YouTube Repeat Button.".

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

screenshot
screenshot

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

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

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

                        Google Chrome extension that embeds a video repeat button directly into the YouTube player                    

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

الاسم YouTube Repeat Button YouTube Repeat Button
ID mpaeilkfigmkompknfmmnojgkbkahfdk
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-repeat-button/mpaeilkfigmkompknfmmnojgkbkahfdk
الوصف YouTube Repeat Button.
حجم الملف 15.33 KB
عدد التثبيتات 394
النسخة الحالية 1.0.0
آخر تحديث 2021-01-05
تاريخ النشر 2019-12-20
تقييم 3.00/5 مجموع تقييمات 4
المطور Vladislav Tupikin
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/MrRefactoring/youtube-repeat
اللغات المدعومة en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.0.0",
    "default_locale": "en",
    "icons": {
        "16": "src\/images\/icons\/icon16.png",
        "48": "src\/images\/icons\/icon48.png",
        "128": "src\/images\/icons\/icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "css": [
                "src\/styles.css"
            ],
            "js": [
                "src\/helpers\/onElementHeightChange.js",
                "src\/helpers\/onRepeatClick.js",
                "src\/helpers\/removeTitle.js",
                "src\/helpers\/resetTitle.js",
                "src\/helpers\/createButton.js",
                "src\/helpers\/patcher.js",
                "src\/content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "permissions": [
        "tabs"
    ]
}