Video Pop Out

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

Qu'est-ce que Video Pop Out ?

Video Pop Out est une extension Chrome développée par http://gerriediaz.com, et sa fonction principale est "This extension pulls videos out from the current page and into a new, properly-sized browser window.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Video Pop Out

Téléchargez les fichiers d'extension Video Pop Out au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Video Pop Out Video Pop Out
ID akmopdkahcllfmaicplhmlglmencblfj
URL Officiel https://chrome.google.com/webstore/detail/video-pop-out/akmopdkahcllfmaicplhmlglmencblfj
Description This extension pulls videos out from the current page and into a new, properly-sized browser window.
Taille du Fichier 42.47 KB
Nombre d'Installations 252
Version Actuelle 0.3.1
Dernière Mise à Jour 2016-03-19
Date de Publication 2016-03-19
Évaluation 2.25/5 Total 4 Évaluations
Développeur http://gerriediaz.com
Type de Paiement free
Langues Prises en Charge 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"
    ]
}