PIPvid
Enables JS PIP support for any HTML 5 video element
PIPvid란 무엇입니까?
PIPvid은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables JS PIP support for any HTML 5 video element"입니다.
확장 프로그램 스크린샷
PIPvid 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Chromium based browsers upport picture-in-picture and there is a JavaScript API which allows websites to leverage this capability. Unfortunately many websites don't so users are left to using browser Windows and OS level windowing management to re-produce this capability. PIPvideo does exactly what you imagine it does. It finds the video elements on the page and adds a little icon in the top left hand corner that when clicked it will open the video leveraging this API and the PIP technology built into Chromium. In order to ensure that the extension doesn't have any negative performance implications you have to click the extension button for it to add the icon to the videos. I've successfully tested it on: * YouTube * NFL Gamepass * Disney Plus * Netflix * CNN * ESPN * Twitch * Mixer Notice: Some websites modify the DOM numerous times and because of this some sites do not currently work in the current design. Here are some that I have found that do not: * Polygon * Hulu * NBA.com * Hotstar
확장 프로그램 기본 정보
이름 | PIPvid |
ID | dkjikmdpclhdhinpibfkknpmoadogcbm |
공식 URL | https://chromewebstore.google.com/detail/pipvid/dkjikmdpclhdhinpibfkknpmoadogcbm |
설명 | Enables JS PIP support for any HTML 5 video element |
파일 크기 | 5.92 KB |
설치 횟수 | 227 |
현재 버전 | 1 |
최근 업데이트 | 2020-05-04 |
출시 날짜 | 2020-05-02 |
개발자 | Unknown |
결제 유형 | free |
도움말 페이지 URL | https://github.com/gregwhitworth/pipvid |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PIPvid", "version": "1", "description": "Enables JS PIP support for any HTML 5 video element", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "pip.css" ] } ], "permissions": [ "activeTab" ], "web_accessible_resources": [ "icon.png" ] } |