PiP Anywhere

Allows activating picture in picture mode from html5 players that block right click

ما هو PiP Anywhere؟

PiP Anywhere هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Allows activating picture in picture mode from html5 players that block right click".

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

screenshot

تحميل ملف CRX للإضافة PiP Anywhere

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

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

                        Can be used to activate picture in picture mode for html 5 players that dont allow right click                    

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

الاسم PiP Anywhere PiP Anywhere
ID lkhcdbmhbdacbjhmdgccgidfifehcjne
عنوان URL الرسمي https://chromewebstore.google.com/detail/pip-anywhere/lkhcdbmhbdacbjhmdgccgidfifehcjne
الوصف Allows activating picture in picture mode from html5 players that block right click
حجم الملف 5.14 KB
عدد التثبيتات 25
النسخة الحالية 1.2
آخر تحديث 2019-01-05
تاريخ النشر 2019-01-05
المطور Unknown
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PiP Anywhere",
    "version": "1.2",
    "description": "Allows activating picture in picture mode from html5 players that block right click",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/watch\/*",
                "https:\/\/tiwi.kiwi\/*",
                "https:\/\/mp4upload.com\/*",
                "https:\/\/streamango.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ]
}