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ファイルをダウンロード
Picture In Picture Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } |