Go PopOut!

PopOut video player on some websites

什么是Go PopOut!?

Go PopOut!是由tranceduck开发的Chrome扩展程序,该扩展的主要功能是“PopOut video player on some websites”。

扩展截图

screenshot
screenshot

下载Go PopOut!扩展crx文件

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

扩展使用说明

                        Go PopOut! will enable a 'pop out' icon inline with video controls on some sites like YouTube and Twitch that will pop out the current video on a separate window. Look for it and enjoy.

Due to Chrome limitations is not possible to keep the pop out window in front of other windows or always visible.                    

扩展基本信息

名称 Go PopOut! Go PopOut!
ID gkancbhpmeiamiljkcfajhebcimjjbie
官方URL https://chromewebstore.google.com/detail/go-popout/gkancbhpmeiamiljkcfajhebcimjjbie
简介 PopOut video player on some websites
文件大小 19.89 KB
安装次数 5,031
当前版本 2.1.2
更新时间 2018-12-14
上架时间 2018-12-14
评分 3.12/5 共43次评分
开发者 tranceduck
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Go PopOut!",
    "description": "PopOut video player on some websites",
    "version": "2.1.2",
    "background": {
        "scripts": [
            "scripts\/core\/core.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "images\/icon-19.png",
        "default_title": "Go PopOut!",
        "default_popup": "views\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.twitch.tv\/*",
                "*:\/\/*.netflix.com\/*",
                "*:\/\/*.vimeo.com\/*",
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.ted.com\/*",
                "*:\/\/*.dailymotion.com\/*",
                "*:\/\/*.metacafe.com\/*",
                "*:\/\/*.nasa.gov\/*",
                "*:\/\/*.ustream.tv\/*"
            ],
            "js": [
                "scripts\/content_scripts\/content.js"
            ],
            "css": [
                "styles\/pip.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "scripts\/content_scripts\/content.js",
        "server\/supported-websites.json",
        "styles\/pip.css",
        "images\/go-pip.white.svg",
        "images\/go-pip.black.svg",
        "images\/go-pip.grey.svg",
        "images\/transparent.gif"
    ],
    "permissions": [
        "tabs",
        "storage",
        "webNavigation",
        "*:\/\/*.youtube.com\/watch*",
        "*:\/\/*.twitch.tv\/*",
        "*:\/\/*.netflix.com\/*",
        "*:\/\/*.vimeo.com\/*",
        "*:\/\/*.amazon.com\/*",
        "*:\/\/*.ted.com\/*",
        "*:\/\/*.dailymotion.com\/*",
        "*:\/\/*.metacafe.com\/*",
        "*:\/\/*.nasa.gov\/*",
        "*:\/\/*.ustream.tv\/*"
    ],
    "icons": {
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}