Tubepop

Undocks the embedded youtube video from their site into its own window.

Tubepopとは何ですか?

Tubepopはlogan.komanetzによって開発されたChromeの拡張機能で、その主な機能は「Undocks the embedded youtube video from their site into its own window.」です。

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

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

拡張機能の使用方法

                        This extension for Chrome allows you to take an already running video on YouTube and pop it out into its own window that you can resize and move.  No longer are you stuck with playing the video inside of the YouTube page.  Enjoy having your video off to the side in its own packed window while you are working on other things.

=============
Version 1.3.1
=============
- Fixes bug with new Chrome update that stopped the window from being undocked
- Changes button to only be enabled when in a Youtube "watch" window                    

拡張機能の基本情報

名前 Tubepop Tubepop
ID kinlkfbbcojohldppmkklkeecgpggohh
公式URL https://chrome.google.com/webstore/detail/tubepop/kinlkfbbcojohldppmkklkeecgpggohh
説明 Undocks the embedded youtube video from their site into its own window.
ファイルサイズ 13.36 KB
インストール数 12
現在のバージョン 1.3.1
最終更新日 2017-02-13
公開日 2017-02-13
評価 5.00/5 合計 1 レビュー
開発者 logan.komanetz
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tubepop",
    "description": "Undocks the embedded youtube video from their site into its own window.",
    "version": "1.3.1",
    "page_action": {
        "default_icon": "button_black_eject.png",
        "default_title": "Click to pop video out of YouTube."
    },
    "background": {
        "scripts": [
            "tubePop.js",
            "chromeExtension.js"
        ]
    },
    "web_accessible_resources": [
        "clientScript.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "notifications",
        "storage",
        "declarativeContent"
    ],
    "options_page": "views\/options.html",
    "options_ui": {
        "page": "views\/options.html",
        "chrome_style": true
    }
}