Udemy Time Remaining

Chrome extension that modifies the Udemy course page, displaying the time remaining after each section

Udemy Time Remaining क्या है?

Udemy Time Remaining DInteractive द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension that modifies the Udemy course page, displaying the time remaining after each section"।

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

screenshot
screenshot
screenshot

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

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

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

                        This little extension will display on the righthand side of each course section, how much time is remaining to finalize the course (including the section where it's listed).

Please bear in mind that Udemy is fairly inconsistent at formatting the course duration times. This extension works by parsing each section duration, therefore that might cause issues for some courses or some particular languages. If you detect any of such issues please let us know so that we can address it.

If the extension doesn't work for you, it might be the case that your language is not supported. Please let us know so that we can include support for it. At the moment the extension should support all 16 languages that Udemy supports as of February 2023.

Note: This extension doesn't work at the moment with Udemy for business,  it only supports regular Udemy.                    

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

नाम Udemy Time Remaining Udemy Time Remaining
ID hjlgkejhagcnacgghedfbgehboigjmpk
आधिकारिक URL https://chromewebstore.google.com/detail/udemy-time-remaining/hjlgkejhagcnacgghedfbgehboigjmpk
विवरण Chrome extension that modifies the Udemy course page, displaying the time remaining after each section
फ़ाइल का आकार 15.57 KB
स्थापना संख्या 503
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2024-02-01
प्रकाशन तिथि 2023-02-22
रेटिंग 4.63/5 कुल 8 रेटिंग्स
डेवलपर DInteractive
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Udemy Time Remaining",
    "version": "1.0.2",
    "description": "Chrome extension that modifies the Udemy course page, displaying the time remaining after each section",
    "author": "Diego de Blas Mateo",
    "action": {
        "default_title": "Udemy Time Remaining",
        "default_icon": "udemy-time-remaining-icon-16x16.png"
    },
    "icons": {
        "16": "udemy-time-remaining-icon-16x16.png",
        "48": "udemy-time-remaining-icon-48x48.png",
        "128": "udemy-time-remaining-icon-128x128.png"
    },
    "content_scripts": [
        {
            "js": [
                "app.js"
            ],
            "matches": [
                "https:\/\/www.udemy.com\/course\/*\/learn\/*"
            ]
        }
    ]
}