Vikings.com HQ Video Fetcher

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

Qu'est-ce que Vikings.com HQ Video Fetcher ?

Vikings.com HQ Video Fetcher est une extension Chrome développée par joshft91, et sa fonction principale est "Let's you know that a HQ video is available from Vikings.com".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Vikings.com HQ Video Fetcher

Téléchargez les fichiers d'extension Vikings.com HQ Video Fetcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Vikings.com HQ Video Fetcher Vikings.com HQ Video Fetcher
ID almdeghijgapmbfpgjmckpkbmpcniknd
URL Officiel https://chromewebstore.google.com/detail/vikingscom-hq-video-fetch/almdeghijgapmbfpgjmckpkbmpcniknd
Description Let's you know that a HQ video is available from Vikings.com
Taille du Fichier 53.64 KB
Nombre d'Installations 93
Version Actuelle 0.0.0.2
Dernière Mise à Jour 2015-07-22
Date de Publication 2015-07-22
Évaluation 4.60/5 Total 5 Évaluations
Développeur joshft91
Type de Paiement free
Site Web de l'Extension https://github.com/joshft91/Vikings-HQ-Video-Fetcher
Langues Prises en Charge 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"
    }
}