Video Pop Out

This extension pulls videos out from the current page and into a new, properly-sized browser window.

Cos'è Video Pop Out?

Video Pop Out è un'estensione di Chrome sviluppata da http://gerriediaz.com, e la sua funzione principale è "This extension pulls videos out from the current page and into a new, properly-sized browser window.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Video Pop Out

Scarica i file di estensione Video Pop Out 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

                        Click on the "P" badge to open the video in a new window!                    

Informazioni di Base sull'Estensione

Nome Video Pop Out Video Pop Out
ID akmopdkahcllfmaicplhmlglmencblfj
URL Ufficiale https://chrome.google.com/webstore/detail/video-pop-out/akmopdkahcllfmaicplhmlglmencblfj
Descrizione This extension pulls videos out from the current page and into a new, properly-sized browser window.
Dimensione del File 42.47 KB
Conteggio Installazioni 252
Versione Corrente 0.3.1
Ultimo Aggiornamento 2016-03-19
Data di Pubblicazione 2016-03-19
Valutazione 2.25/5 Totale 4 Valutazioni
Sviluppatore http://gerriediaz.com
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Pop Out",
    "description": "This extension pulls videos out from the current page and into a new, properly-sized browser window.",
    "version": "0.3.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Video Pop Out"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/espn.go.com\/*"
            ],
            "js": [
                "jquery-2.2.0.min.js",
                "content.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery-2.2.0.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "activeTab"
    ]
}