PiPPY - Native picture in picture

Native Google Chrome extension for picture in picture mode. Supports Youtube, Twitch, Mixer, Facebook and many other platforms.

什麼是PiPPY - Native picture in picture?

PiPPY - Native picture in picture是由http://jaska.dev開發的Chrome擴展程式,該擴展的主要功能是“Native Google Chrome extension for picture in picture mode. Supports Youtube, Twitch, Mixer, Facebook and many other platforms.”。

擴展截圖

screenshot

下載PiPPY - Native picture in picture擴展crx文件

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

擴展使用說明

                        As of January 2019 Google released their own extension for same exact purpose so I recommend switching to it https://chrome.google.com/webstore/detail/picture-in-picture-extens/hkgfoiooedgoejojocmhlaklaeopbecg/
-----------------------------------------------

Picture in picture mode can be forced with this extension even if website doesn't support it.

Ways to use extension

Click the extension icon whenever any kind of video is present on the current page.
* Right click on the video and click "Force picture in picture mode"
* `Alt + shift + s` on Windows or `Cmd+Shift+S`on Mac whenever video is present on the page
* Click PiPPY icon which is embedded in supported players(current only Twitch.tv)

Extension uses icons which are provided by https://icons8.com                    

擴展基本資訊

名稱 PiPPY - Native picture in picture PiPPY - Native picture in picture
ID kienbfjdgnamgohflfagoplkpkkcnohj
官方網址 https://chrome.google.com/webstore/detail/pippy-native-picture-in-p/kienbfjdgnamgohflfagoplkpkkcnohj
簡介 Native Google Chrome extension for picture in picture mode. Supports Youtube, Twitch, Mixer, Facebook and many other platforms.
檔案大小 10.92 KB
安裝次數 18,992
目前版本 0.14
更新時間 2019-03-23
上架時間 2019-03-23
評分 4.72/5 共 36 次評分
開發者 http://jaska.dev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Jasius/PiPPY/
說明頁面URL https://github.com/Jasius/PiPPY/blob/master/README.MD
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PiPPY - Native picture in picture",
    "short_name": "PiPPY",
    "description": "Native Google Chrome extension for picture in picture mode. Supports Youtube, Twitch, Mixer, Facebook and many other platforms.",
    "homepage_url": "http:\/\/pippy.jaska.co",
    "offline_enabled": true,
    "version": "0.14",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "128": "assets\/PiPPY-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/PiPPY-16.png",
            "48": "assets\/PiPPY-48.png",
            "128": "assets\/PiPPY-128.png"
        },
        "default_title": "PiPPY"
    },
    "commands": {
        "shortcut_test": {
            "suggested_key": {
                "default": "Alt+Shift+S",
                "windows": "Alt+Shift+S",
                "mac": "Alt+Shift+S",
                "chromeos": "Alt+Shift+S",
                "linux": "Alt+Shift+S"
            },
            "description": "Force picture in picture"
        }
    },
    "web_accessible_resources": [
        "assets\/PiPPY-Twitch.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.twitch.tv\/directory\/*",
                "*:\/\/*.twitch.tv\/"
            ],
            "js": [
                "twitch\/background.js"
            ],
            "css": [
                "twitch\/style.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}