Video Pop Out

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

Apa itu Video Pop Out?

Video Pop Out adalah ekstensi Chrome yang dikembangkan oleh http://gerriediaz.com, dan fitur utamanya adalah "This extension pulls videos out from the current page and into a new, properly-sized browser window.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Video Pop Out

Unduh file ekstensi Video Pop Out dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Video Pop Out Video Pop Out
ID akmopdkahcllfmaicplhmlglmencblfj
URL Resmi https://chrome.google.com/webstore/detail/video-pop-out/akmopdkahcllfmaicplhmlglmencblfj
Deskripsi This extension pulls videos out from the current page and into a new, properly-sized browser window.
Ukuran File 42.47 KB
Jumlah Instalasi 252
Versi Saat Ini 0.3.1
Terakhir Diperbarui 2016-03-19
Tanggal Publikasi 2016-03-19
Penilaian 2.25/5 Total 4 Penilaian
Pengembang http://gerriediaz.com
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}