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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 |
عنوان صفحة المساعدة | 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" ] } |