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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Let's you know that a HQ video is available from Vikings.com"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Vikings.com HQ Video Fetcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}