Tubepop

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

¿Qué es Tubepop?

Tubepop es una extensión de Chrome desarrollada por logan.komanetz, y su función principal es "Undocks the embedded youtube video from their site into its own window.".

Descargar Archivo CRX de la Extensión Tubepop

Descarga archivos de extensión Tubepop en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Tubepop Tubepop
ID kinlkfbbcojohldppmkklkeecgpggohh
URL Oficial https://chrome.google.com/webstore/detail/tubepop/kinlkfbbcojohldppmkklkeecgpggohh
Descripción Undocks the embedded youtube video from their site into its own window.
Tamaño del Archivo 13.36 KB
Cantidad de Instalaciones 12
Versión Actual 1.3.1
Última Actualización 2017-02-13
Fecha de Publicación 2017-02-13
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador logan.komanetz
Tipo de Pago free
Idiomas Soportados 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
    }
}