YouTube Picture in Picture

Float videos from YouTube with native picture-in-picture

YouTube Picture in Picture란 무엇입니까?

YouTube Picture in Picture은(는) https://brunomacedo.com.br에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Float videos from YouTube with native picture-in-picture"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Float videos from YouTube with native picture-in-picture.                    

확장 프로그램 기본 정보

이름 YouTube Picture in Picture YouTube Picture in Picture
ID flfgfoknpbdaddimcppfkkhmgckcgoan
공식 URL https://chrome.google.com/webstore/detail/youtube-picture-in-pictur/flfgfoknpbdaddimcppfkkhmgckcgoan
설명 Float videos from YouTube with native picture-in-picture
파일 크기 105 KB
설치 횟수 1,000
현재 버전 1.1.4
최근 업데이트 2019-03-18
출시 날짜 2019-03-15
평점 3.90/5 총 10 개의 평점
개발자 https://brunomacedo.com.br
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Picture in Picture",
    "short_name": "Float Video",
    "description": "Float videos from YouTube with native picture-in-picture",
    "author": "Bruno Macedo",
    "version": "1.1.4",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "64": "64.png",
        "128": "128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "picture-in-picture.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "picture-in-picture.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Float Video",
        "default_popup": "picture-in-picture.html"
    }
}