Picture in Picture - PiP View

Watch videos in a floating PiP window (always on top of other windows) even when tab is switched.

ما هو Picture in Picture - PiP View؟

Picture in Picture - PiP View هو إضافة Chrome تم تطويرها بواسطة lunu.bounir، والميزة الرئيسية لها هي "Watch videos in a floating PiP window (always on top of other windows) even when tab is switched.".

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

screenshot

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

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

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

                        This extension brings a PiP view to all websites with an HTML video element. The extension adds a page action button to your browser. When a page has a video element, the color of this button changes. Press the button to open the active player in the Picture-in-Picture mode (PiP Mode). This extension automatically tries to use the active player.

For YouTube, the extension also offers an in-player button next to the settings button to open the YouTube video in the picture-in-picture mode. You can use this extension to watch YouTube videos in a floating window that is on top of all other windows so tabs can be switched and still the player is visible. The floating window has play and pause buttons, and you can exit from the picture-in-picture mode anytime.

What is the Picture-in-Picture (PiP) mode: This mode lets you play any video in Picture-in-Picture (PiP) mode, and it works on all platforms. PiP is a popped-out, always-on-top video player that floats on top of other windows. You can also reposition it along the screen border while you continue to surf the internet.

Notes: 
1. You need Chrome version >= 70 for this extension to work
2. This extension works for players in iframes
3. This extension is based on manifest v3
4. The extension includes a script that prevents the page from leaving the Picture-in-Picture view for 2 seconds from version 0.3.2. This script helps to address issues with pages that disable the Picture-in-Picture feature or cancel the Picture-in-Picture requests.                    

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

الاسم Picture in Picture - PiP View Picture in Picture - PiP View
ID eaeedemddlledlghhjebjgdmhjekgegd
عنوان URL الرسمي https://chromewebstore.google.com/detail/picture-in-picture-pip-vi/eaeedemddlledlghhjebjgdmhjekgegd
الوصف Watch videos in a floating PiP window (always on top of other windows) even when tab is switched.
حجم الملف 52.88 KB
عدد التثبيتات 10,000
النسخة الحالية 0.3.3
آخر تحديث 2023-07-22
تاريخ النشر 2019-11-30
تقييم 3.46/5 مجموع تقييمات 28
المطور lunu.bounir
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://webextension.org/listing/youtube-tools.html?from=picture-in-picture
عنوان صفحة المساعدة https://webextension.org/listing/youtube-tools.html?from=picture-in-picture
عنوان صفحة سياسة الخصوصية https://add0n.com/policies/lunu.bounir.txt
اللغات المدعومة de,en,fr,nl,es,it,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Picture in Picture - PiP View",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.3.3",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "data\/plugins\/youtube.css"
            ],
            "js": [
                "data\/plugins\/youtube.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "data\/plugins\/global.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/youtube-tools.html?from=picture-in-picture",
    "action": {
        "default_title": "Click to open active video in Picture-in-Picture (PiP) mode",
        "default_icon": {
            "16": "data\/icons\/disabled\/16.png",
            "32": "data\/icons\/disabled\/32.png",
            "48": "data\/icons\/disabled\/48.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "commands": {
        "_execute_action": []
    }
}