Vikings.com HQ Video Fetcher
Let's you know that a HQ video is available from Vikings.com
Co je Vikings.com HQ Video Fetcher?
Vikings.com HQ Video Fetcher je rozšíření Chrome vyvinuté joshft91, a jeho hlavní funkcí je „Let's you know that a HQ video is available from Vikings.com“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Vikings.com HQ Video Fetcher
Stáhněte si soubory rozšíření Vikings.com HQ Video Fetcher 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í
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
Základní Informace o Rozšíření
Název | Vikings.com HQ Video Fetcher |
ID | almdeghijgapmbfpgjmckpkbmpcniknd |
Oficiální URL | https://chromewebstore.google.com/detail/vikingscom-hq-video-fetch/almdeghijgapmbfpgjmckpkbmpcniknd |
Popis | Let's you know that a HQ video is available from Vikings.com |
Velikost souboru | 53.64 KB |
Počet instalací | 93 |
Aktuální Verze | 0.0.0.2 |
Poslední Aktualizace | 2015-07-22 |
Datum Vydání | 2015-07-22 |
Hodnocení | 4.60/5 Celkem 5 Hodnocení |
Vývojář | joshft91 |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/joshft91/Vikings-HQ-Video-Fetcher |
Podporované Jazyky | 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" } } |