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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}