Enhanced Floating Video Player (PIP)
A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!
Enhanced Floating Video Player (PIP)とは何ですか?
Enhanced Floating Video Player (PIP)はJean-Michel M. | twitch.tv/krowplexによって開発されたChromeの拡張機能で、その主な機能は「A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!」です。
拡張機能のスクリーンショット
Enhanced Floating Video Player (PIP)拡張機能のCRXファイルをダウンロード
Enhanced Floating Video Player (PIP)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Picture-In-Picture is a Chromium feature, which allows to drag your video over other desktop windows, allowing you full flexibility and productivity. Very helpful for people with one monitor, or if you need to do something while watching a tutorial, livestreams, movies, etc. ### How To ### There are 2 ways: First way: On YouTube, Netflix and Twitch, there will be a "PIP" button in the media player bar when hovering on it. This button will allow you to watch content on top of other windows. Second way: Simply click on the extension icon at the top right of your browser. It will by default select the first available video on your current page. ### The Future ### We plan on integrating the PIP button for many other sites. For now, sites with the PIP buttons are (but not limited to, if you use the extension icon), YouTube, Netflix and Twitch. The extension and user interface is subject to change, however, not the functionalities. ### Troubleshooting ### Might not work on Chrome 70 versions or lower. Try updating your browser. If you still have trouble, please submit your problem here: https://github.com/jeanmichelmorin/Floating-Video-Player-Youtube-PIP/issues
拡張機能の基本情報
名前 | Enhanced Floating Video Player (PIP) |
ID | oaihjcmhhokpahibakljjfkgbhghiffd |
公式URL | https://chromewebstore.google.com/detail/enhanced-floating-video-p/oaihjcmhhokpahibakljjfkgbhghiffd |
説明 | A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more! |
ファイルサイズ | 22.68 KB |
インストール数 | 2,197 |
現在のバージョン | 2.0.2 |
最終更新日 | 2021-07-19 |
公開日 | 2021-07-14 |
評価 | 3.92/5 合計 12 レビュー |
開発者 | Jean-Michel M. | twitch.tv/krowplex |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/jeanmichelmorin/Floating-Video-Player-Youtube-PIP |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Enhanced Floating Video Player (PIP)", "version": "2.0.2", "manifest_version": 2, "description": "A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/pip_logic.js" ] }, { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/sites_integration\/youtube.js" ] }, { "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "js\/sites_integration\/netflix.js" ] }, { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "js\/sites_integration\/twitch.js" ] } ], "icons": { "128": "Icon.png" }, "permissions": [ "activeTab" ], "background": { "scripts": [ "js\/pip_logic.js", "js\/background.js" ], "persistent": false }, "browser_action": [] } |