Video Pop Out

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

What is Video Pop Out?

Video Pop Out is a Chrome extension developed by http://gerriediaz.com, and its main feature is "This extension pulls videos out from the current page and into a new, properly-sized browser window.".

Extension Screenshots

screenshot

Download Video Pop Out Extension CRX File

Download Video Pop Out extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Video Pop Out Video Pop Out
ID akmopdkahcllfmaicplhmlglmencblfj
Official URL 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.
File Size 42.47 KB
Installation Count 252
Current Version 0.3.1
Last Updated 2016-03-19
Publish Date 2016-03-19
Rating 2.25/5 Total 4 Ratings
Developer http://gerriediaz.com
Payment Type free
Supported Languages 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"
    ]
}