PiP Anywhere

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

PiP Anywhere क्या है?

PiP Anywhere Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows activating picture in picture mode from html5 players that block right click"।

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

screenshot

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

crx प्रारूप में PiP Anywhere एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
        }
    ]
}