Picture in Picture Button

Universal Picture in Picture button/shortcut for Chrome.

什麼是Picture in Picture Button?

Picture in Picture Button是由https://supersonichub1.github.io開發的Chrome擴展程式,該擴展的主要功能是“Universal Picture in Picture button/shortcut for Chrome.”。

擴展截圖

screenshot

下載Picture in Picture Button擴展crx文件

下載Picture in Picture Button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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."
        }
    }
}