Vikings.com HQ Video Fetcher

Let's you know that a HQ video is available from Vikings.com

Hvad er Vikings.com HQ Video Fetcher?

Vikings.com HQ Video Fetcher er en Chrome-udvidelse udviklet af joshft91, og dens hovedfunktion er "Let's you know that a HQ video is available from Vikings.com".

Udvidelsesskærmbilleder

screenshot

Download Vikings.com HQ Video Fetcher-udvidelses-CRX-fil

Download Vikings.com HQ Video Fetcher-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Vikings.com HQ Video Fetcher Vikings.com HQ Video Fetcher
ID almdeghijgapmbfpgjmckpkbmpcniknd
Officiel URL https://chromewebstore.google.com/detail/vikingscom-hq-video-fetch/almdeghijgapmbfpgjmckpkbmpcniknd
Beskrivelse Let's you know that a HQ video is available from Vikings.com
Filstørrelse 53.64 KB
Antal Installationer 93
Nuværende Version 0.0.0.2
Senest Opdateret 2015-07-22
Udgivelsesdato 2015-07-22
Bedømmelse 4.60/5 Samlet 5 Bedømmelser
Udvikler joshft91
Betalingsmetode free
Udvidelseswebsted https://github.com/joshft91/Vikings-HQ-Video-Fetcher
Understøttede Sprog 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"
    }
}