Panopto Downloader

Adds download button for Panopto videos

ما هو Panopto Downloader؟

Panopto Downloader هو إضافة Chrome تم تطويرها بواسطة andrew-ma، والميزة الرئيسية لها هي "Adds download button for Panopto videos".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Panopto Downloader

قم بتنزيل ملفات الامتداد Panopto Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}