Fast Panopto
Allows user to choose a video speed beyond the defaults allowed by Panopto.
Fast Panoptoคืออะไร?
Fast Panopto เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rellikolbaid และคุณลักษณะหลักของมันคือ "Allows user to choose a video speed beyond the defaults allowed by Panopto."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fast Panopto
ดาวน์โหลดไฟล์ส่วนขยาย Fast Panopto ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Chrome extension which allows you to set Panopto's video player speeds greater or less than the defaults given on the page. Additionally, allows users to download the webcam video displayed while on a Panopto video player page. An example URL where this extension may be used is given below. Note: use of the extension requires being on a Panopto video session page of the form *://*.panopto.*/*/Viewer*. Example page where this extension would be used: https://arizona.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=3424a7d6-d170-4f61-92b0-a9d1015203d2 If you found this extension helpful, please consider donating by clicking the donate button in it! I'm a college student that wrote this extension for myself and others to use to help study or cram lectures and I could use the coffee money :) New in 1.23: Usable by domains outside of the US
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | bginlheikaacjjdajifcbakcmfcgmefh |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/fast-panopto/bginlheikaacjjdajifcbakcmfcgmefh |
คำอธิบาย | Allows user to choose a video speed beyond the defaults allowed by Panopto. |
ขนาดไฟล์ | 25.59 KB |
จำนวนการติดตั้ง | 6,243 |
เวอร์ชันปัจจุบัน | 1.23 |
อัปเดตครั้งล่าสุด | 2019-12-06 |
วันที่เผยแพร่ | 2019-12-06 |
คะแนน | 4.62/5 รวมทั้งหมด 21 คะแนน |
ผู้พัฒนา | Rellikolbaid |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fast Panopto", "version": "1.23", "description": "Allows user to choose a video speed beyond the defaults allowed by Panopto.", "permissions": [ "activeTab", "declarativeContent", "storage", "downloads" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.panopto.com\/*\/Viewer*" ], "js": [ "pageDOMParser.js" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon.png", "32": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" } }, "icons": { "16": "images\/icon.png", "32": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "manifest_version": 2 } |