Picture-in-Picture Shortcut

Switch videos to Picture-in-Picture mode with a keyboard shortcut or toolbar button.

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

Picture-in-Picture Shortcut은(는) Corbin Davenport에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Switch videos to Picture-in-Picture mode with a keyboard shortcut or toolbar button."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Picture-in-Picture Shortcut adds a keyboard shortcut and toolbar button for switching video players to the Picture-in-Picture mode in web browsers. The default keyboard shortcut is Ctrl+Period (Command+Period on Mac), but it can be changed from the browser settings. The Picture-in-Picture Shortcut extension button in the browser's toolbar can be used to toggle PiP mode.

Google Chrome and other Chromium browsers have a built-in Picture-in-Picture button in the default media controls, but it isn't always available and requires multiple mouse clicks. Picture-in-Picture Shortcut also overrides sites that don't normally allow Picture-in-Picture mode, and attempts to add a play/pause button to the PiP popup. However, this may not always work for sites and players not originally built for PiP mode.

This extension is open-source under the GPLv3 license, the code is available on GitHub: https://github.com/corbindavenport/pip-shortcut                    

확장 프로그램 기본 정보

이름 Picture-in-Picture Shortcut Picture-in-Picture Shortcut
ID ednlokepbjfieampgfdabeglnceoheni
공식 URL https://chromewebstore.google.com/detail/picture-in-picture-shortc/ednlokepbjfieampgfdabeglnceoheni
설명 Switch videos to Picture-in-Picture mode with a keyboard shortcut or toolbar button.
파일 크기 125 KB
설치 횟수 1,175
현재 버전 1.3
최근 업데이트 2023-09-10
출시 날짜 2022-03-24
평점 5.00/5 총 4 개의 평점
개발자 Corbin Davenport
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/corbindavenport/pip-shortcut
도움말 페이지 URL https://github.com/corbindavenport/pip-shortcut/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Picture-in-Picture Shortcut",
    "version": "1.3",
    "author": "Corbin Davenport",
    "description": "Switch videos to Picture-in-Picture mode with a keyboard shortcut or toolbar button.",
    "homepage_url": "https:\/\/github.com\/corbindavenport\/pip-shortcut",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "options_ui": {
        "page": "main.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "32": "img\/icon_x32.png",
        "48": "img\/icon_x48.png",
        "128": "img\/icon_x128.png"
    },
    "action": {
        "default_icon": {
            "32": "img\/icon_x32.png",
            "48": "img\/icon_action_x48.png",
            "128": "img\/icon_action_x128.png"
        },
        "default_title": "Toggle Picture-in-Picture Mode"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Period"
            },
            "description": "Toggle Picture-in-Picture Mode"
        }
    }
}