YouTube Picture in Picture

Float videos from YouTube with native picture-in-picture

ما هو YouTube Picture in Picture؟

YouTube Picture in Picture هو إضافة Chrome تم تطويرها بواسطة https://brunomacedo.com.br، والميزة الرئيسية لها هي "Float videos from YouTube with native picture-in-picture".

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

screenshot

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

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

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

                        Float videos from YouTube with native picture-in-picture.                    

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

الاسم YouTube Picture in Picture YouTube Picture in Picture
ID flfgfoknpbdaddimcppfkkhmgckcgoan
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-picture-in-pictur/flfgfoknpbdaddimcppfkkhmgckcgoan
الوصف Float videos from YouTube with native picture-in-picture
حجم الملف 105 KB
عدد التثبيتات 1,000
النسخة الحالية 1.1.4
آخر تحديث 2019-03-18
تاريخ النشر 2019-03-15
تقييم 3.90/5 مجموع تقييمات 10
المطور https://brunomacedo.com.br
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Picture in Picture",
    "short_name": "Float Video",
    "description": "Float videos from YouTube with native picture-in-picture",
    "author": "Bruno Macedo",
    "version": "1.1.4",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "64": "64.png",
        "128": "128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "picture-in-picture.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "picture-in-picture.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Float Video",
        "default_popup": "picture-in-picture.html"
    }
}