Vikings.com HQ Video Fetcher

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

Vikings.com HQ Video Fetcher là gì?

Vikings.com HQ Video Fetcher là một tiện ích mở rộng Chrome được phát triển bởi joshft91, và tính năng chính của nó là "Let's you know that a HQ video is available from Vikings.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Vikings.com HQ Video Fetcher

Tải xuống các tệp mở rộng Vikings.com HQ Video Fetcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Vikings.com HQ Video Fetcher Vikings.com HQ Video Fetcher
ID almdeghijgapmbfpgjmckpkbmpcniknd
URL Chính Thức https://chromewebstore.google.com/detail/vikingscom-hq-video-fetch/almdeghijgapmbfpgjmckpkbmpcniknd
Mô tả Let's you know that a HQ video is available from Vikings.com
Kích Thước Tệp 53.64 KB
Số Lần Cài Đặt 93
Phiên Bản Hiện Tại 0.0.0.2
Cập Nhật Lần Cuối 2015-07-22
Ngày Phát Hành 2015-07-22
Đánh Giá 4.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển joshft91
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/joshft91/Vikings-HQ-Video-Fetcher
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}