Panopticlone

A Chrome extension to help users download videos from Panopto (an enterprise video content management system).

Panopticloneคืออะไร?

Panopticlone เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://assemblyco.de และคุณลักษณะหลักของมันคือ "A Chrome extension to help users download videos from Panopto (an enterprise video content management system)."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Panopticlone

ดาวน์โหลดไฟล์ส่วนขยาย Panopticlone ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Panopticlone is a useful Chrome extension to help automatically download video sessions from Panopto installations.

Browse to a folder on Panopto, and Panopticlone will allow you to download all sessions in that video folder with a single click - even if RSS feeds are disabled.

Video sessions will be downloaded and placed into a convenient subfolder in your Downloads folder.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Panopticlone Panopticlone
ID ojpnimfglaagmipdcdabpfnehbbbaonm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/panopticlone/ojpnimfglaagmipdcdabpfnehbbbaonm
คำอธิบาย A Chrome extension to help users download videos from Panopto (an enterprise video content management system).
ขนาดไฟล์ 45.71 KB
จำนวนการติดตั้ง 1,472
เวอร์ชันปัจจุบัน 0.3.3
อัปเดตครั้งล่าสุด 2015-12-21
วันที่เผยแพร่ 2015-12-21
คะแนน 2.94/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา https://assemblyco.de
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/charlienewey/panopticlone
URL หน้าช่วยเหลือ https://github.com/charlienewey/panopticlone/issues
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Panopticlone",
    "description": "A Chrome extension to help users download videos from Panopto (an enterprise video content management system).",
    "version": "0.3.3",
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "res\/img\/icon_64.png",
        "default_popup": "src\/html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/Panopto\/*\/List.aspx*"
            ],
            "js": [
                ".\/src\/js\/filter.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "48": "res\/img\/icon_48.png",
        "64": "res\/img\/icon_64.png",
        "128": "res\/img\/icon_128.png"
    },
    "permissions": [
        "downloads",
        "notifications",
        "tabs"
    ]
}