Vikings.com HQ Video Fetcher

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

Cos'è Vikings.com HQ Video Fetcher?

Vikings.com HQ Video Fetcher è un'estensione di Chrome sviluppata da joshft91, e la sua funzione principale è "Let's you know that a HQ video is available from Vikings.com".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Vikings.com HQ Video Fetcher

Scarica i file di estensione Vikings.com HQ Video Fetcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Vikings.com HQ Video Fetcher Vikings.com HQ Video Fetcher
ID almdeghijgapmbfpgjmckpkbmpcniknd
URL Ufficiale https://chromewebstore.google.com/detail/vikingscom-hq-video-fetch/almdeghijgapmbfpgjmckpkbmpcniknd
Descrizione Let's you know that a HQ video is available from Vikings.com
Dimensione del File 53.64 KB
Conteggio Installazioni 93
Versione Corrente 0.0.0.2
Ultimo Aggiornamento 2015-07-22
Data di Pubblicazione 2015-07-22
Valutazione 4.60/5 Totale 5 Valutazioni
Sviluppatore joshft91
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/joshft91/Vikings-HQ-Video-Fetcher
Lingue Supportate 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"
    }
}