Vikings.com HQ Video Fetcher
Let's you know that a HQ video is available from Vikings.com
Co to jest Vikings.com HQ Video Fetcher?
Vikings.com HQ Video Fetcher to rozszerzenie Chrome opracowane przez joshft91, a jego główną funkcją jest „Let's you know that a HQ video is available from Vikings.com”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Vikings.com HQ Video Fetcher
Pobierz pliki rozszerzeń Vikings.com HQ Video Fetcher 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
This extension will, if available, grab the high-quality video associated with any video on Vikings.com. This is my first Chrome Extensions which means I'm not exactly sure why it's saying that I need to access your browsing history. Some package that I'm using is requiring that permission even though I am not touching your browsing history at all. If you'd like to look at the source code, you can find it here: https://github.com/joshft91/Vikings-HQ-Video-Fetcher
Podstawowe informacje o rozszerzeniu
Nazwa | Vikings.com HQ Video Fetcher |
ID | almdeghijgapmbfpgjmckpkbmpcniknd |
Oficjalny URL | https://chromewebstore.google.com/detail/vikingscom-hq-video-fetch/almdeghijgapmbfpgjmckpkbmpcniknd |
Opis | Let's you know that a HQ video is available from Vikings.com |
Rozmiar pliku | 53.64 KB |
Liczba instalacji | 93 |
Aktualna Wersja | 0.0.0.2 |
Ostatnia Aktualizacja | 2015-07-22 |
Data Publikacji | 2015-07-22 |
Ocena | 4.60/5 Łącznie 5 Oceny |
Deweloper | joshft91 |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/joshft91/Vikings-HQ-Video-Fetcher |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Vikings.com HQ Video Fetcher", "version": "0.0.0.2", "description": "Let's you know that a HQ video is available from Vikings.com", "page_action": { "default_icon": "images\/icon128.png", "default_title": "HQ Video Available!" }, "background": { "scripts": [ "scripts\/jquery-2.1.1.min.js", "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.vikings.com\/media-vault\/videos\/*" ], "exclude_matches": [ "http:\/\/www.vikings.com\/media-vault\/videos\/channel\/*" ], "js": [ "scripts\/jquery-2.1.1.min.js", "scripts\/csScript.js" ] } ], "permissions": [ "webNavigation" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon50.png", "128": "images\/icon128.png" } } |