Youtube Embed

This extension adds an additional button to the youtube player that toggles embedded mode.

ما هو Youtube Embed؟

Youtube Embed هو إضافة Chrome تم تطويرها بواسطة rosca.valentin2012، والميزة الرئيسية لها هي "This extension adds an additional button to the youtube player that toggles embedded mode.".

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

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

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

                        This extension adds an additional button to the youtube player that toggles embedded mode.                    

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

الاسم Youtube Embed Youtube Embed
ID hbeapjkbnlomlkplfchcobioeeockkpd
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-embed/hbeapjkbnlomlkplfchcobioeeockkpd
الوصف This extension adds an additional button to the youtube player that toggles embedded mode.
حجم الملف 44.96 KB
عدد التثبيتات 151
النسخة الحالية 1.1.2
آخر تحديث 2017-06-26
تاريخ النشر 2017-06-26
تقييم 5.00/5 مجموع تقييمات 4
المطور rosca.valentin2012
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.1.2",
    "name": "Youtube Embed",
    "author": "Valentin Rosca",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.youtube.com\/embed\/*",
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "jquery.min.js",
                "youtube_embed.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}