Vikings.com HQ Video Fetcher
Let's you know that a HQ video is available from Vikings.com
Was ist Vikings.com HQ Video Fetcher?
Vikings.com HQ Video Fetcher ist eine Chrome-Erweiterung, die von joshft91 entwickelt wurde, und ihr Hauptmerkmal ist "Let's you know that a HQ video is available from Vikings.com".
Erweiterungsscreenshots
Vikings.com HQ Video Fetcher-Erweiterungs-CRX-Datei herunterladen
Laden Sie Vikings.com HQ Video Fetcher-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | almdeghijgapmbfpgjmckpkbmpcniknd | 
| Offizielle URL | https://chromewebstore.google.com/detail/vikingscom-hq-video-fetch/almdeghijgapmbfpgjmckpkbmpcniknd | 
| Beschreibung | Let's you know that a HQ video is available from Vikings.com | 
| Dateigröße | 53.64 KB | 
| Installationsanzahl | 93 | 
| Aktuelle Version | 0.0.0.2 | 
| Letztes Update | 2015-07-22 | 
| Veröffentlichungsdatum | 2015-07-22 | 
| Bewertung | 4.60/5 Insgesamt 5 Bewertungen | 
| Entwickler | joshft91 | 
| Zahlungsart | free | 
| Erweiterungswebsite | https://github.com/joshft91/Vikings-HQ-Video-Fetcher | 
| Unterstützte Sprachen | 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"
    }
}  |  |