Vikings.com HQ Video Fetcher
Let's you know that a HQ video is available from Vikings.com
Wat is Vikings.com HQ Video Fetcher?
Vikings.com HQ Video Fetcher is een Chrome-extensie ontwikkeld door joshft91, en de belangrijkste functie is "Let's you know that a HQ video is available from Vikings.com".
Extensie Screenshots
Download het CRX-bestand van de extensie Vikings.com HQ Video Fetcher
Download Vikings.com HQ Video Fetcher-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Vikings.com HQ Video Fetcher |
ID | almdeghijgapmbfpgjmckpkbmpcniknd |
Officiële URL | https://chromewebstore.google.com/detail/vikingscom-hq-video-fetch/almdeghijgapmbfpgjmckpkbmpcniknd |
Beschrijving | Let's you know that a HQ video is available from Vikings.com |
Bestandsgrootte | 53.64 KB |
Aantal Installaties | 93 |
Huidige Versie | 0.0.0.2 |
Laatst Bijgewerkt | 2015-07-22 |
Publicatiedatum | 2015-07-22 |
Beoordeling | 4.60/5 Totaal 5 Beoordelingen |
Ontwikkelaar | joshft91 |
Betalingswijze | free |
Extensiewebsite | https://github.com/joshft91/Vikings-HQ-Video-Fetcher |
Ondersteunde Talen | 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" } } |