Tubepop

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

Cos'è Tubepop?

Tubepop è un'estensione di Chrome sviluppata da logan.komanetz, e la sua funzione principale è "Undocks the embedded youtube video from their site into its own window.".

Scarica il file CRX dell'estensione Tubepop

Scarica i file di estensione Tubepop in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Tubepop Tubepop
ID kinlkfbbcojohldppmkklkeecgpggohh
URL Ufficiale https://chrome.google.com/webstore/detail/tubepop/kinlkfbbcojohldppmkklkeecgpggohh
Descrizione Undocks the embedded youtube video from their site into its own window.
Dimensione del File 13.36 KB
Conteggio Installazioni 12
Versione Corrente 1.3.1
Ultimo Aggiornamento 2017-02-13
Data di Pubblicazione 2017-02-13
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore logan.komanetz
Tipo di Pagamento free
Lingue Supportate 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
    }
}