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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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:\/\/*\/*"
    ]
}