Go PopOut!
PopOut video player on some websites
Co je Go PopOut!?
Go PopOut! je rozšíření Chrome vyvinuté tranceduck, a jeho hlavní funkcí je „PopOut video player on some websites“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Go PopOut!
Stáhněte si soubory rozšíření Go PopOut! ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Go PopOut! |
ID | gkancbhpmeiamiljkcfajhebcimjjbie |
Oficiální URL | https://chromewebstore.google.com/detail/go-popout/gkancbhpmeiamiljkcfajhebcimjjbie |
Popis | PopOut video player on some websites |
Velikost souboru | 19.89 KB |
Počet instalací | 5,031 |
Aktuální Verze | 2.1.2 |
Poslední Aktualizace | 2018-12-14 |
Datum Vydání | 2018-12-14 |
Hodnocení | 3.12/5 Celkem 43 Hodnocení |
Vývojář | tranceduck |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } |