Picture-in-Picture Viewer

Watch video using the Picture-in-Picture API.

Picture-in-Picture Viewer란 무엇입니까?

Picture-in-Picture Viewer은(는) https://thorium.rocks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch video using the Picture-in-Picture API."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        A simple Chromium Extension to enable the Picture-in-Picture Web API in Chromium.

It is a fork of https://chrome.google.com/webstore/detail/picture-in-picture-extens/hkgfoiooedgoejojocmhlaklaeopbecg with some fixes, and removed Google Analytics tracking.

  - Alex313031                    

확장 프로그램 기본 정보

이름 Picture-in-Picture Viewer Picture-in-Picture Viewer
ID kgfcmiijchdkbknmjnojfngnapkibkdh
공식 URL https://chromewebstore.google.com/detail/picture-in-picture-viewer/kgfcmiijchdkbknmjnojfngnapkibkdh
설명 Watch video using the Picture-in-Picture API.
파일 크기 11.12 KB
설치 횟수 2,028
현재 버전 1.12.2
최근 업데이트 2023-09-02
출시 날짜 2023-04-26
평점 5.00/5 총 3 개의 평점
개발자 https://thorium.rocks
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Alex313031/picture-in-picture-viewer
도움말 페이지 URL https://github.com/Alex313031/picture-in-picture-viewer/issues
개인정보 보호 정책 페이지 URL https://thorium.rocks/COC.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Picture-in-Picture Viewer",
    "short_name": "PiP Viewer",
    "author": "Alex313031",
    "description": "Watch video using the Picture-in-Picture API.",
    "homepage_url": "https:\/\/github.com\/Alex313031\/picture-in-picture-viewer",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "offline_enabled": true,
    "version": "1.12.2",
    "version_name": "1.12.2",
    "icons": {
        "16": "assets\/icon16.png",
        "24": "assets\/icon24.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "64": "assets\/icon64.png",
        "128": "assets\/icon128.png",
        "256": "assets\/icon256.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "19": "assets\/icon19.png",
            "38": "assets\/icon38.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+P",
                "mac": "Alt+P",
                "chromeos": "Alt+P",
                "linux": "Alt+P"
            }
        }
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        ""
    ]
}