Video Pop Out

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

什么是Video Pop Out?

Video Pop Out是由http://gerriediaz.com开发的Chrome扩展程序,该扩展的主要功能是“This extension pulls videos out from the current page and into a new, properly-sized browser window.”。

扩展截图

screenshot

下载Video Pop Out扩展crx文件

下载Video Pop Out扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Video Pop Out Video Pop Out
ID akmopdkahcllfmaicplhmlglmencblfj
官方URL https://chrome.google.com/webstore/detail/video-pop-out/akmopdkahcllfmaicplhmlglmencblfj
简介 This extension pulls videos out from the current page and into a new, properly-sized browser window.
文件大小 42.47 KB
安装次数 252
当前版本 0.3.1
更新时间 2016-03-19
上架时间 2016-03-19
评分 2.25/5 共4次评分
开发者 http://gerriediaz.com
付费类型 free
支持的语言 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"
    ]
}