Picture-in-Picture Shortcut

Switch videos to Picture-in-Picture mode with a keyboard shortcut or toolbar button.

Picture-in-Picture Shortcut क्या है?

Picture-in-Picture Shortcut Corbin Davenport द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Switch videos to Picture-in-Picture mode with a keyboard shortcut or toolbar button."।

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

screenshot
screenshot

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

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

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

                        Picture-in-Picture Shortcut adds a keyboard shortcut and toolbar button for switching video players to the Picture-in-Picture mode in web browsers. The default keyboard shortcut is Ctrl+Period (Command+Period on Mac), but it can be changed from the browser settings. The Picture-in-Picture Shortcut extension button in the browser's toolbar can be used to toggle PiP mode.

Google Chrome and other Chromium browsers have a built-in Picture-in-Picture button in the default media controls, but it isn't always available and requires multiple mouse clicks. Picture-in-Picture Shortcut also overrides sites that don't normally allow Picture-in-Picture mode, and attempts to add a play/pause button to the PiP popup. However, this may not always work for sites and players not originally built for PiP mode.

This extension is open-source under the GPLv3 license, the code is available on GitHub: https://github.com/corbindavenport/pip-shortcut                    

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

नाम Picture-in-Picture Shortcut Picture-in-Picture Shortcut
ID ednlokepbjfieampgfdabeglnceoheni
आधिकारिक URL https://chromewebstore.google.com/detail/picture-in-picture-shortc/ednlokepbjfieampgfdabeglnceoheni
विवरण Switch videos to Picture-in-Picture mode with a keyboard shortcut or toolbar button.
फ़ाइल का आकार 125 KB
स्थापना संख्या 1,175
वर्तमान संस्करण 1.3
अंतिम अपडेट 2023-09-10
प्रकाशन तिथि 2022-03-24
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Corbin Davenport
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/corbindavenport/pip-shortcut
सहायता पृष्ठ URL https://github.com/corbindavenport/pip-shortcut/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Picture-in-Picture Shortcut",
    "version": "1.3",
    "author": "Corbin Davenport",
    "description": "Switch videos to Picture-in-Picture mode with a keyboard shortcut or toolbar button.",
    "homepage_url": "https:\/\/github.com\/corbindavenport\/pip-shortcut",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "options_ui": {
        "page": "main.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "32": "img\/icon_x32.png",
        "48": "img\/icon_x48.png",
        "128": "img\/icon_x128.png"
    },
    "action": {
        "default_icon": {
            "32": "img\/icon_x32.png",
            "48": "img\/icon_action_x48.png",
            "128": "img\/icon_action_x128.png"
        },
        "default_title": "Toggle Picture-in-Picture Mode"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Period"
            },
            "description": "Toggle Picture-in-Picture Mode"
        }
    }
}