Fast Panopto
Allows user to choose a video speed beyond the defaults allowed by Panopto.
Fast Panopto là gì?
Fast Panopto là một tiện ích mở rộng Chrome được phát triển bởi Rellikolbaid, và tính năng chính của nó là "Allows user to choose a video speed beyond the defaults allowed by Panopto.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Fast Panopto
Tải xuống các tệp mở rộng Fast Panopto dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | bginlheikaacjjdajifcbakcmfcgmefh |
URL Chính Thức | https://chrome.google.com/webstore/detail/fast-panopto/bginlheikaacjjdajifcbakcmfcgmefh |
Mô tả | Allows user to choose a video speed beyond the defaults allowed by Panopto. |
Kích Thước Tệp | 25.59 KB |
Số Lần Cài Đặt | 6,243 |
Phiên Bản Hiện Tại | 1.23 |
Cập Nhật Lần Cuối | 2019-12-06 |
Ngày Phát Hành | 2019-12-06 |
Đánh Giá | 4.62/5 Tổng số 21 Đánh Giá |
Nhà Phát Triển | Rellikolbaid |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |