Video picture in picture

Video picture in picture

Video picture in picture क्या है?

Video picture in picture Oscar de Dios द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Video picture in picture"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Video picture in picture एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Chrome extension to open the video of the active page to picture in picture mode.
It will open a litle window "always on top", it will be possible to use the computer in other windows while you watch the video with 
the video always visible.

The code is in: https://github.com/OscarDeDios/pictureInPictureExtension

The extension uses the new picture in picture API: https://wicg.github.io/picture-in-picture/                    

एक्सटेंशन की मूल जानकारी

नाम Video picture in picture Video picture in picture
ID bfncjmnhlgddppdmogacohjjieiahelp
आधिकारिक URL https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp
विवरण Video picture in picture
फ़ाइल का आकार 5.87 KB
स्थापना संख्या 578
वर्तमान संस्करण 1.1
अंतिम अपडेट 2019-03-21
प्रकाशन तिथि 2019-03-16
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Oscar de Dios
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.noteboardapp.com/policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video picture in picture",
    "manifest_version": 2,
    "version": "1.1",
    "short_name": "Video picture in picture",
    "icons": {
        "48": "img\/pipVideo.png",
        "128": "img\/pipVideo128.png"
    },
    "browser_action": {
        "default_title": "__MSG_extName__",
        "default_icon": {
            "19": "img\/pipVideo.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "description": "Video picture in picture",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}