Floating Video Player
Watch videos using Picture-in-Picture mode (Floating Video Player).
Floating Video Player란 무엇입니까?
Floating Video Player은(는) Free Software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch videos using Picture-in-Picture mode (Floating Video Player)."입니다.
확장 프로그램 스크린샷
Floating Video Player 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Watch videos using Picture-in-Picture mode (Floating Video Player). Our software supports all kinds of video websites. Picture-in-Picture lets you to watch videos in a popup window (always on top of other windows) so you can keep an eye on what you’re watching while surfing the Internet. Features: - Adds a Picture in Picture button to the video player of supported sites - Users can choose to click on the Picture in Picture button on the video player or on the extension icon on the Google Chrome toolbar - Save time and continue browsing the Internet and watching your videos at the same time YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions. The floating image mode in Picture mode (PIP) for Chrome is not created, is not associated with Google Inc. or not supported.
확장 프로그램 기본 정보
이름 | Floating Video Player |
ID | hkgklchdacgolfhdiginenjghokhehnn |
공식 URL | https://chromewebstore.google.com/detail/floating-video-player/hkgklchdacgolfhdiginenjghokhehnn |
설명 | Watch videos using Picture-in-Picture mode (Floating Video Player). |
파일 크기 | 100 KB |
설치 횟수 | 5,000 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2020-04-26 |
출시 날짜 | 2020-04-23 |
평점 | 4.18/5 총 486 개의 평점 |
개발자 | Free Software |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.freebusinessapps.net/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0.0", "name": "__MSG_application_title__", "default_locale": "en", "description": "__MSG_application_description__", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/background.js" ] } ], "icons": { "16": "images\/icons8-tv-show-16.png", "32": "images\/icons8-tv-show-32.png", "48": "images\/icons8-tv-show-48.png", "64": "images\/icons8-tv-show-64.png", "128": "images\/icons8-tv-show-128.png" }, "browser_action": { "default_popup": "background.html", "default_icon": { "16": "images\/icons8-tv-show-16.png", "32": "images\/icons8-tv-show-32.png", "48": "images\/icons8-tv-show-48.png", "64": "images\/icons8-tv-show-64.png", "128": "images\/icons8-tv-show-128.png" } }, "background": { "scripts": [ "\/js\/update-conf.js", "\/js\/update.min.js", "js\/background.js" ] }, "permissions": [ "activeTab", "contextMenus", "https:\/\/*.freebusinessapps.net\/*" ] } |