YouTube Picture in Picture

Float videos from YouTube with native picture-in-picture

YouTube Picture in Pictureとは何ですか?

YouTube Picture in Pictureはhttps://brunomacedo.com.brによって開発されたChromeの拡張機能で、その主な機能は「Float videos from YouTube with native picture-in-picture」です。

拡張機能のスクリーンショット

screenshot

YouTube Picture in Picture拡張機能のCRXファイルをダウンロード

YouTube Picture in Picture拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Float videos from YouTube with native picture-in-picture.                    

拡張機能の基本情報

名前 YouTube Picture in Picture YouTube Picture in Picture
ID flfgfoknpbdaddimcppfkkhmgckcgoan
公式URL https://chrome.google.com/webstore/detail/youtube-picture-in-pictur/flfgfoknpbdaddimcppfkkhmgckcgoan
説明 Float videos from YouTube with native picture-in-picture
ファイルサイズ 105 KB
インストール数 1,000
現在のバージョン 1.1.4
最終更新日 2019-03-18
公開日 2019-03-15
評価 3.90/5 合計 10 レビュー
開発者 https://brunomacedo.com.br
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Picture in Picture",
    "short_name": "Float Video",
    "description": "Float videos from YouTube with native picture-in-picture",
    "author": "Bruno Macedo",
    "version": "1.1.4",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "64": "64.png",
        "128": "128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "picture-in-picture.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "picture-in-picture.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Float Video",
        "default_popup": "picture-in-picture.html"
    }
}