Video Pop Out

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

Video Pop Out là gì?

Video Pop Out là một tiện ích mở rộng Chrome được phát triển bởi http://gerriediaz.com, và tính năng chính của nó là "This extension pulls videos out from the current page and into a new, properly-sized browser window.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Video Pop Out

Tải xuống các tệp mở rộng Video Pop Out dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Video Pop Out Video Pop Out
ID akmopdkahcllfmaicplhmlglmencblfj
URL Chính Thức https://chrome.google.com/webstore/detail/video-pop-out/akmopdkahcllfmaicplhmlglmencblfj
Mô tả This extension pulls videos out from the current page and into a new, properly-sized browser window.
Kích Thước Tệp 42.47 KB
Số Lần Cài Đặt 252
Phiên Bản Hiện Tại 0.3.1
Cập Nhật Lần Cuối 2016-03-19
Ngày Phát Hành 2016-03-19
Đánh Giá 2.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển http://gerriediaz.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}