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
官方網址 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"
    ]
}