Video Pop Out
This extension pulls videos out from the current page and into a new, properly-sized browser window.
Co to jest Video Pop Out?
Video Pop Out to rozszerzenie Chrome opracowane przez http://gerriediaz.com, a jego główną funkcją jest „This extension pulls videos out from the current page and into a new, properly-sized browser window.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Video Pop Out
Pobierz pliki rozszerzeń Video Pop Out 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
Click on the "P" badge to open the video in a new window!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | akmopdkahcllfmaicplhmlglmencblfj |
Oficjalny URL | https://chrome.google.com/webstore/detail/video-pop-out/akmopdkahcllfmaicplhmlglmencblfj |
Opis | This extension pulls videos out from the current page and into a new, properly-sized browser window. |
Rozmiar pliku | 42.47 KB |
Liczba instalacji | 252 |
Aktualna Wersja | 0.3.1 |
Ostatnia Aktualizacja | 2016-03-19 |
Data Publikacji | 2016-03-19 |
Ocena | 2.25/5 Łącznie 4 Oceny |
Deweloper | http://gerriediaz.com |
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": "Video Pop Out", "description": "This extension pulls videos out from the current page and into a new, properly-sized browser window.", "version": "0.3.1", "browser_action": { "default_icon": "icon.png", "default_title": "Video Pop Out" }, "content_scripts": [ { "matches": [ "*:\/\/espn.go.com\/*" ], "js": [ "jquery-2.2.0.min.js", "content.js" ], "css": [ "main.css" ] } ], "background": { "scripts": [ "jquery-2.2.0.min.js", "background.js" ] }, "permissions": [ "activeTab" ] } |