Video Pop Out

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

Wat is Video Pop Out?

Video Pop Out is een Chrome-extensie ontwikkeld door http://gerriediaz.com, en de belangrijkste functie is "This extension pulls videos out from the current page and into a new, properly-sized browser window.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Video Pop Out

Download Video Pop Out-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Video Pop Out Video Pop Out
ID akmopdkahcllfmaicplhmlglmencblfj
Officiële URL https://chrome.google.com/webstore/detail/video-pop-out/akmopdkahcllfmaicplhmlglmencblfj
Beschrijving This extension pulls videos out from the current page and into a new, properly-sized browser window.
Bestandsgrootte 42.47 KB
Aantal Installaties 252
Huidige Versie 0.3.1
Laatst Bijgewerkt 2016-03-19
Publicatiedatum 2016-03-19
Beoordeling 2.25/5 Totaal 4 Beoordelingen
Ontwikkelaar http://gerriediaz.com
Betalingswijze free
Ondersteunde Talen 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"
    ]
}