Panopticlone
A Chrome extension to help users download videos from Panopto (an enterprise video content management system).
Panopticlone क्या है?
Panopticlone https://assemblyco.de द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to help users download videos from Panopto (an enterprise video content management system)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Panopticlone एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" ] } |