Vikings.com HQ Video Fetcher

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

什麼是Vikings.com HQ Video Fetcher?

Vikings.com HQ Video Fetcher是由joshft91開發的Chrome擴展程式,該擴展的主要功能是“Let's you know that a HQ video is available from Vikings.com”。

擴展截圖

screenshot

下載Vikings.com HQ Video Fetcher擴展crx文件

下載Vikings.com HQ Video Fetcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Vikings.com HQ Video Fetcher Vikings.com HQ Video Fetcher
ID almdeghijgapmbfpgjmckpkbmpcniknd
官方網址 https://chromewebstore.google.com/detail/vikingscom-hq-video-fetch/almdeghijgapmbfpgjmckpkbmpcniknd
簡介 Let's you know that a HQ video is available from Vikings.com
檔案大小 53.64 KB
安裝次數 93
目前版本 0.0.0.2
更新時間 2015-07-22
上架時間 2015-07-22
評分 4.60/5 共 5 次評分
開發者 joshft91
付費類型 free
擴展官網 https://github.com/joshft91/Vikings-HQ-Video-Fetcher
支援的語言 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"
    }
}