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 |
Eメール | [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" ] } ] } |