Vikings.com HQ Video Fetcher

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

O que é Vikings.com HQ Video Fetcher?

Vikings.com HQ Video Fetcher é uma extensão do Chrome desenvolvida por joshft91, e sua principal característica é "Let's you know that a HQ video is available from Vikings.com".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Vikings.com HQ Video Fetcher

Baixe arquivos de extensão Vikings.com HQ Video Fetcher no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Vikings.com HQ Video Fetcher Vikings.com HQ Video Fetcher
ID almdeghijgapmbfpgjmckpkbmpcniknd
URL Oficial https://chromewebstore.google.com/detail/vikingscom-hq-video-fetch/almdeghijgapmbfpgjmckpkbmpcniknd
Descrição Let's you know that a HQ video is available from Vikings.com
Tamanho do Arquivo 53.64 KB
Contagem de Instalações 93
Versão Atual 0.0.0.2
Última Atualização 2015-07-22
Data de Publicação 2015-07-22
Classificação 4.60/5 Total de 5 Avaliações
Desenvolvedor joshft91
Tipo de Pagamento free
Site da Extensão https://github.com/joshft91/Vikings-HQ-Video-Fetcher
Idiomas Suportados 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"
    }
}