Picture in Picture Button

Universal Picture in Picture button/shortcut for Chrome.

Picture in Picture Button क्या है?

Picture in Picture Button https://supersonichub1.github.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Universal Picture in Picture button/shortcut for Chrome."।

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

screenshot

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

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

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

                        This extension adds a universal Picture in Picture button and keyboard shortcut to Chrome, powered by the Picture in Picture Web API introduced by Google in 2018.

Features:
- keyboard shortcut
- PiP element automatically closes on fullscreen
- works on any webpage with a video element*

The keyboard shortcut is Alt + P (⌥ + P on macOS) by default, just like in the original Picture in Picture extension by Google. You can change it to your liking or disable it altogether by going to chrome://extensions/shortcuts. You can also toggle Picture in Picture by clicking on the extension icon.

*Limitations:
- doesn't work on extension pages such as Alternative Player for Twitch.tv
- doesn't work on video elements in inline frames such as VRV

It the extension doesn't seem to work as intended, feel free to start an issue at the GitHub below.

Contribute to this extension: https://github.com/SuperSonicHub1/pictureInPictureButton
Extension icon from Material Design and used under the Apache License, Version 2.0.                    

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

नाम Picture in Picture Button Picture in Picture Button
ID jinpkmfakkbmiimemppkhgjeogbdbnid
आधिकारिक URL https://chromewebstore.google.com/detail/picture-in-picture-button/jinpkmfakkbmiimemppkhgjeogbdbnid
विवरण Universal Picture in Picture button/shortcut for Chrome.
फ़ाइल का आकार 17.4 KB
स्थापना संख्या 2,002
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-09-21
प्रकाशन तिथि 2020-09-21
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर https://supersonichub1.github.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/SuperSonicHub1/pictureInPictureButton
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Picture in Picture Button",
    "version": "1.0",
    "description": "Universal Picture in Picture button\/shortcut for Chrome.",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "PiP Button",
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        }
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png"
    },
    "commands": {
        "pip-toggle": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Toggle the Picture-in-Picture element."
        }
    }
}