Echo360+

Provides various improvements to the Echo360 video streamer/downloader

Echo360+ क्या है?

Echo360+ Matty Hempstead द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides various improvements to the Echo360 video streamer/downloader"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Echo360+ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        The current features are listed below.

1. ● Better file names when you download videos ●
Instead of downloading lectures as hd1.mp4, lectures are downloaded with informative file names. This is especially useful when you are downloading multiple lectures from different units at once.
e.g. "hd1.mp4" → "DATA1001-2019-09-29.mp4"

2. ● More video playback speed options ●
Previously the lectures were limited to playback speeds of between 0.5x and 2x. This extension adds 4 faster playback options (2.25x, 2.50x, 2.75x, 3.00x) for those especially slow lecturers.

3. ● Add day to lecture date strings ●
Echo360 only displays the date (e.g. 4th Aug), but not the day (e.g. Wednesday) on the list of lectures for a particular unit. As most people usually associated lectures times with days rather than dates, I often find myself opening a calendar app to check the date a particular lecture was run, when simply displaying the day would be enough information to deduce this myself. Thus, this extension also adds a small 3 letter day string next to each lecture.

4. ● Allow hiding of future lectures ●
Echo360 will normally display every lecture (including those not released yet), and does not provide a feature to hide them. This extension add a checkbox to hide future lectures, which is enabled by default. The default ordering is also set to newest first so that when combined with the hiding functionality, all relevant lectures are immediately visible.

5. ● Re-position the view lecture popup ●
For some reason, the view lecture popup is partially hidden behind the right hand side of the page. Echo360+ moves this popup back into the page where it should already be.

More features coming soon!

💡 Note 💡
This extension was made specifically for the USyd lecture system, and as a result some features may not work with your own university.

 ★ This extension is open source and on GitHub! ★
https://github.com/mattyhempstead/echo360-plus
Feel free to add any feature requests/issues to the issues section of the repository, or make the change yourself and create a pull request.

Also, a thanks to EnBr55 for their contributions
https://github.com/EnBr55                    

एक्सटेंशन की मूल जानकारी

नाम Echo360+ Echo360+
ID golfblfimaaodgjjagigkahbbhbagndl
आधिकारिक URL https://chromewebstore.google.com/detail/echo360+/golfblfimaaodgjjagigkahbbhbagndl
विवरण Provides various improvements to the Echo360 video streamer/downloader
फ़ाइल का आकार 17.64 KB
स्थापना संख्या 1,023
वर्तमान संस्करण 1.3.2
अंतिम अपडेट 2020-10-14
प्रकाशन तिथि 2020-06-11
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर Matty Hempstead
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mattyhempstead/echo360-plus
सहायता पृष्ठ URL https://github.com/mattyhempstead/echo360-plus/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Echo360+",
    "description": "Provides various improvements to the Echo360 video streamer\/downloader",
    "version": "1.3.2",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/echo360.org.au\/section\/*",
                "http:\/\/echo360.org.au\/section\/*"
            ],
            "js": [
                "js\/custom-file-names.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/echo360.org.au\/lesson\/*",
                "http:\/\/echo360.org.au\/lesson\/*"
            ],
            "js": [
                "js\/more-speed-options.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/echo360.org.au\/section\/*",
                "http:\/\/echo360.org.au\/section\/*"
            ],
            "js": [
                "js\/day-with-dates.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/echo360.org.au\/section\/*",
                "http:\/\/echo360.org.au\/section\/*"
            ],
            "css": [
                "css\/reposition-popup.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/echo360.org.au\/section\/*",
                "http:\/\/echo360.org.au\/section\/*"
            ],
            "js": [
                "js\/hide-future-lectures.js"
            ],
            "css": [
                "css\/hide-future-lectures.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}