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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://gerriediaz.com และคุณลักษณะหลักของมันคือ "This extension pulls videos out from the current page and into a new, properly-sized browser window."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Pop Out

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}