Go PopOut!

PopOut video player on some websites

Was ist Go PopOut!?

Go PopOut! ist eine Chrome-Erweiterung, die von tranceduck entwickelt wurde, und ihr Hauptmerkmal ist "PopOut video player on some websites".

Erweiterungsscreenshots

screenshot
screenshot

Go PopOut!-Erweiterungs-CRX-Datei herunterladen

Laden Sie Go PopOut!-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Go PopOut! Go PopOut!
ID gkancbhpmeiamiljkcfajhebcimjjbie
Offizielle URL https://chromewebstore.google.com/detail/go-popout/gkancbhpmeiamiljkcfajhebcimjjbie
Beschreibung PopOut video player on some websites
Dateigröße 19.89 KB
Installationsanzahl 5,031
Aktuelle Version 2.1.2
Letztes Update 2018-12-14
Veröffentlichungsdatum 2018-12-14
Bewertung 3.12/5 Insgesamt 43 Bewertungen
Entwickler tranceduck
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}