Picture in Picture

Allows switch to picture in picture mode for sites where blocked right mouse click

ما هو Picture in Picture؟

Picture in Picture هو إضافة Chrome تم تطويرها بواسطة maniac، والميزة الرئيسية لها هي "Allows switch to picture in picture mode for sites where blocked right mouse click".

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

screenshot

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

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

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

                                            

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

الاسم Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
عنوان URL الرسمي https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
الوصف Allows switch to picture in picture mode for sites where blocked right mouse click
حجم الملف 19.24 KB
عدد التثبيتات 15
النسخة الحالية 0.0.1
آخر تحديث 2018-12-20
تاريخ النشر 2018-12-18
تقييم 5.00/5 مجموع تقييمات 1
المطور maniac
نوع الدفع free
موقع الإضافة https://github.com/the-maniac/picture-in-picture
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Picture in Picture",
    "short_name": "PiP",
    "description": "Allows switch to picture in picture mode for sites where blocked right mouse click",
    "version": "0.0.1",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "others.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab"
    ]
}