Vikings.com HQ Video Fetcher
Let's you know that a HQ video is available from Vikings.com
What is Vikings.com HQ Video Fetcher?
Vikings.com HQ Video Fetcher is a Chrome extension developed by joshft91, and its main feature is "Let's you know that a HQ video is available from Vikings.com".
Extension Screenshots
Download Vikings.com HQ Video Fetcher Extension CRX File
Download Vikings.com HQ Video Fetcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Vikings.com HQ Video Fetcher |
ID | almdeghijgapmbfpgjmckpkbmpcniknd |
Official URL | https://chromewebstore.google.com/detail/vikingscom-hq-video-fetch/almdeghijgapmbfpgjmckpkbmpcniknd |
Description | Let's you know that a HQ video is available from Vikings.com |
File Size | 53.64 KB |
Installation Count | 93 |
Current Version | 0.0.0.2 |
Last Updated | 2015-07-22 |
Publish Date | 2015-07-22 |
Rating | 4.60/5 Total 5 Ratings |
Developer | joshft91 |
Payment Type | free |
Extension Website | https://github.com/joshft91/Vikings-HQ-Video-Fetcher |
Supported Languages | 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" } } |