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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย joshft91 และคุณลักษณะหลักของมันคือ "Let's you know that a HQ video is available from Vikings.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vikings.com HQ Video Fetcher
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |