Coursera HD Video Downloader

Download coursera videos in HD

Coursera HD Video Downloader क्या है?

Coursera HD Video Downloader https://rahulgurung.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download coursera videos in HD"।

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

screenshot

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

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

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

                        Release 2.0.0:
🌟 𝗔𝗱𝗱𝗲𝗱 𝗦𝘂𝗽𝗽𝗼𝗿𝘁 𝗳𝗼𝗿 𝗻𝗲𝘄 𝗨𝗜*

Read how this extension works: https://rahulgurung.com/How-to-download-Coursera-videos-in-HD/

Right now, an issue with videos downloads of Coursera is it doesn't allows to download video in HD. This extension resolves that issue by providing the video download in best quality available.
Steps to use:
1) Install the extension
2) Click on new Download button to open the HD video in browser's local player
3) Press Ctrl+S

What this extension does:
- Download a given video in HD.

What this extension doesn't do:
- Downloading multiple videos at once.
- Downoading videos without logging in.

If you found this project useful, support the developer by buying them a coffee here: https://www.buymeacoffee.com/gurrrung
or if you don't want to give monetary donations consider giving them a star ⭐ in Github. (It's free)
https://github.com/gurrrung/coursera-HD-video-downloader                    

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

नाम Coursera HD Video Downloader Coursera HD Video Downloader
ID kpnmpopgchfdpjephjkcgikfjnbpoahf
आधिकारिक URL https://chromewebstore.google.com/detail/coursera-hd-video-downloa/kpnmpopgchfdpjephjkcgikfjnbpoahf
विवरण Download coursera videos in HD
फ़ाइल का आकार 14.89 KB
स्थापना संख्या 4,738
वर्तमान संस्करण 2.1.3
अंतिम अपडेट 2022-05-21
प्रकाशन तिथि 2020-06-30
रेटिंग 3.68/5 कुल 22 रेटिंग्स
डेवलपर https://rahulgurung.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/gurrrung/coursera-HD-video-downloader
सहायता पृष्ठ URL https://github.com/gurrrung/coursera-HD-video-downloader
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coursera HD Video Downloader",
    "version": "2.1.3",
    "description": "Download coursera videos in HD",
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "browser_action": {
        "default_title": "Coursera Videos Downloader",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.coursera.org\/*"
            ],
            "js": [
                "in-content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/www.coursera.org\/*",
        "webNavigation",
        "activeTab"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}