Picture in Picture
Provide PIP function for Youtube, Bilibili and so on.
Picture in Pictureとは何ですか?
Picture in Pictureはhttps://www.johnzhang.xyzによって開発されたChromeの拡張機能で、その主な機能は「Provide PIP function for Youtube, Bilibili and so on.」です。
拡張機能のスクリーンショット
Picture in Picture拡張機能のCRXファイルをダウンロード
Picture in Picture拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Picture-in-Picture (PiP) Mode allows you to watch videos in a floating window (always on top of other windows), this feature was support late last year and this extension would support other sites like Youtube and so on. 拡張機能の基本情報
| 名前 | |
| ID | macihajaciflkkmodijnkfjmpikhjepe |
| 公式URL | https://chrome.google.com/webstore/detail/picture-in-picture/macihajaciflkkmodijnkfjmpikhjepe |
| 説明 | Provide PIP function for Youtube, Bilibili and so on. |
| ファイルサイズ | 57.96 KB |
| インストール数 | 305 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2019-02-01 |
| 公開日 | 2019-01-28 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | https://www.johnzhang.xyz |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"content_scripts": [
{
"css": [
"sites\/youtube\/pip.css"
],
"js": [
"sites\/youtube\/pip.js"
],
"all_frames": true,
"run_at": "document_start",
"matches": [
"*:\/\/*.youtube.com\/*"
]
}
],
"description": "Provide PIP function for Youtube, Bilibili and so on.",
"name": "Picture in Picture",
"version": "1.0",
"manifest_version": 2,
"browser_action": {
"default_icon": "assets\/pip512.png"
},
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"48": "assets\/pip48.png",
"128": "assets\/pip128.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Alt+P",
"mac": "Alt+P",
"chromeos": "Alt+P",
"linux": "Alt+P"
}
}
},
"permissions": [
"tabs",
" | |