Panopto Downloader

Adds download button for Panopto videos

Panopto Downloader란 무엇입니까?

Panopto Downloader은(는) andrew-ma에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds download button for Panopto videos"입니다.

확장 프로그램 스크린샷

screenshot

Panopto Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Panopto Downloader Panopto Downloader
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"
            ]
        }
    ]
}