Go PopOut!
PopOut video player on some websites
Co to jest Go PopOut!?
Go PopOut! to rozszerzenie Chrome opracowane przez tranceduck, a jego główną funkcją jest „PopOut video player on some websites”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Go PopOut!
Pobierz pliki rozszerzeń Go PopOut! w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Go PopOut! |
ID | gkancbhpmeiamiljkcfajhebcimjjbie |
Oficjalny URL | https://chromewebstore.google.com/detail/go-popout/gkancbhpmeiamiljkcfajhebcimjjbie |
Opis | PopOut video player on some websites |
Rozmiar pliku | 19.89 KB |
Liczba instalacji | 5,031 |
Aktualna Wersja | 2.1.2 |
Ostatnia Aktualizacja | 2018-12-14 |
Data Publikacji | 2018-12-14 |
Ocena | 3.12/5 Łącznie 43 Oceny |
Deweloper | tranceduck |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |