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」です。
拡張機能のスクリーンショット
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 |
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" } } |