Video Picture-in-Picture

Continue watching your videos whilst doing something else

ما هو Video Picture-in-Picture؟

Video Picture-in-Picture هو إضافة Chrome تم تطويرها بواسطة germain، والميزة الرئيسية لها هي "Continue watching your videos whilst doing something else".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Video Picture-in-Picture

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

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

                        🖼 WebExtension that discovers videos in a tab and transitions them in Picture-in-Picture mode                    

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

الاسم Video Picture-in-Picture Video Picture-in-Picture
ID njjicmmkcgeigdgihdhkjoahiieinmci
عنوان URL الرسمي https://chromewebstore.google.com/detail/video-picture-in-picture/njjicmmkcgeigdgihdhkjoahiieinmci
الوصف Continue watching your videos whilst doing something else
حجم الملف 11.29 KB
عدد التثبيتات 1,734
النسخة الحالية 0.0.1
آخر تحديث 2021-05-05
تاريخ النشر 2018-11-10
تقييم 5.00/5 مجموع تقييمات 6
المطور germain
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/gsouquet/video-pip-webextension
عنوان صفحة المساعدة https://github.com/gsouquet/video-pip-webextension/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Picture-in-Picture",
    "version": "0.0.1",
    "description": "Continue watching your videos whilst doing something else",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_popup": "popup\/dropdown.html",
        "default_icon": {
            "16": "img\/icon-16.png",
            "48": "img\/icon-48.png",
            "128": "img\/icon-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content_script.js"
            ]
        }
    ],
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    }
}