Picture In Picture Tab
Allow you to create a Picture In Picture for any tabs using streaming as PIP video
Picture In Picture Tab란 무엇입니까?
Picture In Picture Tab은(는) nadirlaskar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow you to create a Picture In Picture for any tabs using streaming as PIP video"입니다.
확장 프로그램 스크린샷
Picture In Picture Tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Pin any chrome tab or screen using Picture-in-Picture Mode. "Picture In Picture Tab" allows you to pin a tab in a floating window (always on top of other windows) so you can keep an eye on what you’re doing on other tabs while interacting with other sites, or applications. Keyboard shortcut: Alt + Shift + P (⌥ + Shift + P on macOS). You can also use the Browser Action Icon to toggle the tabs to pin or unpin as PIP. Enjoy!
확장 프로그램 기본 정보
이름 | |
ID | bgopgnbpejocbnogmnjlbdalcgncbebc |
공식 URL | https://chrome.google.com/webstore/detail/picture-in-picture-tab/bgopgnbpejocbnogmnjlbdalcgncbebc |
설명 | Allow you to create a Picture In Picture for any tabs using streaming as PIP video |
파일 크기 | 44.67 KB |
설치 횟수 | 536 |
현재 버전 | 1.0 |
최근 업데이트 | 2020-05-21 |
출시 날짜 | 2020-05-21 |
평점 | 2.20/5 총 5 개의 평점 |
개발자 | nadirlaskar |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://twitter.com/nadirlaskar |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Picture In Picture Tab", "version": "1.0", "description": "Allow you to create a Picture In Picture for any tabs using streaming as PIP video", "manifest_version": 2, "permissions": [], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+P", "mac": "Alt+Shift+P" }, "description": "pipTab" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "RecordRTC.js", "playerScript.js" ] } ], "browser_action": [], "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "minimum_chrome_version": "69.0.3483.0" } |