Picture in Picture

Provide PIP function for Youtube, Bilibili and so on.

Picture in Picture란 무엇입니까?

Picture in Picture은(는) https://www.johnzhang.xyz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provide PIP function for Youtube, Bilibili and so on."입니다.

확장 프로그램 스크린샷

screenshot

Picture in Picture 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Picture-in-Picture (PiP) Mode allows you to watch videos in a floating window (always on top of other windows), this feature was support late last year and this extension would support other sites like Youtube and so on.                    

확장 프로그램 기본 정보

이름 Picture in Picture Picture in Picture
ID macihajaciflkkmodijnkfjmpikhjepe
공식 URL https://chrome.google.com/webstore/detail/picture-in-picture/macihajaciflkkmodijnkfjmpikhjepe
설명 Provide PIP function for Youtube, Bilibili and so on.
파일 크기 57.96 KB
설치 횟수 305
현재 버전 1.0
최근 업데이트 2019-02-01
출시 날짜 2019-01-28
평점 5.00/5 총 2 개의 평점
개발자 https://www.johnzhang.xyz
이메일 [email protected]
결제 유형 free
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "css": [
                "sites\/youtube\/pip.css"
            ],
            "js": [
                "sites\/youtube\/pip.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "description": "Provide PIP function for Youtube, Bilibili and so on.",
    "name": "Picture in Picture",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "assets\/pip512.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "assets\/pip48.png",
        "128": "assets\/pip128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+P",
                "mac": "Alt+P",
                "chromeos": "Alt+P",
                "linux": "Alt+P"
            }
        }
    },
    "permissions": [
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "VJB.css",
        "VJB-finishCSS.css"
    ],
    "minimum_chrome_version": "69.0.3483.0"
}