Panopto Downloader
Adds download button for Panopto videos
什么是Panopto Downloader?
Panopto Downloader是由andrew-ma开发的Chrome扩展程序,该扩展的主要功能是“Adds download button for Panopto videos”。
扩展截图
下载Panopto Downloader扩展crx文件
下载Panopto Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | eiipnolnldiglhnkfhcmmppdcfnjgdna |
官方URL | https://chrome.google.com/webstore/detail/panopto-downloader/eiipnolnldiglhnkfhcmmppdcfnjgdna |
简介 | Adds download button for Panopto videos |
文件大小 | 8.11 KB |
安装次数 | 3,161 |
当前版本 | 1.2.2 |
更新时间 | 2021-09-02 |
上架时间 | 2021-09-02 |
评分 | 3.67/5 共9次评分 |
开发者 | andrew-ma |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/andrew-ma/panopto_downloader_extension/ |
支持的语言 | 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" ] } ] } |