Go PopOut!

PopOut video player on some websites

Cos'è Go PopOut!?

Go PopOut! è un'estensione di Chrome sviluppata da tranceduck, e la sua funzione principale è "PopOut video player on some websites".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Go PopOut!

Scarica i file di estensione Go PopOut! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Go PopOut! Go PopOut!
ID gkancbhpmeiamiljkcfajhebcimjjbie
URL Ufficiale https://chromewebstore.google.com/detail/go-popout/gkancbhpmeiamiljkcfajhebcimjjbie
Descrizione PopOut video player on some websites
Dimensione del File 19.89 KB
Conteggio Installazioni 5,031
Versione Corrente 2.1.2
Ultimo Aggiornamento 2018-12-14
Data di Pubblicazione 2018-12-14
Valutazione 3.12/5 Totale 43 Valutazioni
Sviluppatore tranceduck
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}