Picture in Picture

Allows switch to picture in picture mode for sites where blocked right mouse click

Picture in Pictureとは何ですか?

Picture in Pictureはmaniacによって開発されたChromeの拡張機能で、その主な機能は「Allows switch to picture in picture mode for sites where blocked right mouse click」です。

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

screenshot

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

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

拡張機能の使用方法

                                            

拡張機能の基本情報

名前 Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
公式URL https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
説明 Allows switch to picture in picture mode for sites where blocked right mouse click
ファイルサイズ 19.24 KB
インストール数 15
現在のバージョン 0.0.1
最終更新日 2018-12-20
公開日 2018-12-18
評価 5.00/5 合計 1 レビュー
開発者 maniac
支払い方法 free
拡張機能のウェブサイト https://github.com/the-maniac/picture-in-picture
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Picture in Picture",
    "short_name": "PiP",
    "description": "Allows switch to picture in picture mode for sites where blocked right mouse click",
    "version": "0.0.1",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "others.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab"
    ]
}