Panopto Downloader
Adds download button for Panopto videos
Panopto Downloader là gì?
Panopto Downloader là một tiện ích mở rộng Chrome được phát triển bởi andrew-ma, và tính năng chính của nó là "Adds download button for Panopto videos".
Ả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 Panopto Downloader
Tải xuống các tệp mở rộng Panopto Downloader 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
This adds a green download button when on a Panopto video page. It uses the Panopto video page title to create a valid filename, and copies the filename to the clipboard. When the user clicks on the button, a new tab will open with the Panopto video as a .MP4 file. The user can press Ctrl+S to open the "Save As" prompt, and paste the valid filename from the clipboard.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | eiipnolnldiglhnkfhcmmppdcfnjgdna |
URL Chính Thức | https://chrome.google.com/webstore/detail/panopto-downloader/eiipnolnldiglhnkfhcmmppdcfnjgdna |
Mô tả | Adds download button for Panopto videos |
Kích Thước Tệp | 8.11 KB |
Số Lần Cài Đặt | 3,161 |
Phiên Bản Hiện Tại | 1.2.2 |
Cập Nhật Lần Cuối | 2021-09-02 |
Ngày Phát Hành | 2021-09-02 |
Đánh Giá | 3.67/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | andrew-ma |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/andrew-ma/panopto_downloader_extension/ |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Panopto Downloader", "version": "1.2.2", "manifest_version": 2, "description": "Adds download button for Panopto videos", "homepage_url": "https:\/\/github.com\/andrew-ma\/panopto_downloader_extension", "minimum_chrome_version": "74", "icons": { "48": "\/icon.png", "96": "\/[email protected]" }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*.panopto.eu\/*", "*:\/\/*.panopto.com\/*" ], "exclude_matches": [ "*:\/\/www.panopto.com\/*", "*:\/\/support.panopto.com\/*", "*:\/\/login.panopto.com\/*" ], "js": [ "\/panopto-download-button.js" ], "css": [ "\/panopto-download-button.css" ] } ] } |