Udemy Enhancer

A useful tool to improve the user experience of Udemy.

Τι είναι το Udemy Enhancer;

Το Udemy Enhancer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον snh90100, και η κύρια λειτουργία του είναι "A useful tool to improve the user experience of Udemy.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Udemy Enhancer

Λήψη αρχείων επέκτασης Udemy Enhancer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension offers features to improve your user experience on the Udemy website.

Attention: These features only appear on the lecture page.

Current features:
1. The user can extend video size to fill the entire webpage, similar to Youtube's theater mode.
2. Picture-in-Picture
3. The user can use the mouse to capture an area and then take a screenshot of the selected area. Press Ctrl+C to cancel.
4. The user can adjust the video play speed. To set the minimum and maximum speed and the slider interval,  right-click the extension icon and select the option page to update.

Udemy may update its code and make the extension features not working. If you encounter any issues or want to contribute to the extension, please visit the repository and open an issue.
https://github.com/a90100/udemy-enhancer

If this extension greatly improves your experience, please consider giving it a five-star review! If you encounter any issues, please let me know. Thank you!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Udemy Enhancer Udemy Enhancer
ID ncfomdkhmodhjcnabelemeokekkoennd
Επίσημο URL https://chromewebstore.google.com/detail/udemy-enhancer/ncfomdkhmodhjcnabelemeokekkoennd
Περιγραφή A useful tool to improve the user experience of Udemy.
Μέγεθος Αρχείου 1.3 MB
Αριθμός Εγκαταστάσεων 167
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2024-02-25
Ημερομηνία Δημοσίευσης 2023-04-27
Αξιολόγηση 4.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής snh90100
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/a90100/udemy-enhancer
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/a90100/udemy-enhancer/wiki/Chrome-Extension-Privacy-Policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Udemy Enhancer",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "A useful tool to improve the user experience of Udemy.",
    "icons": {
        "16": "dist\/images\/magic-wand16.png",
        "32": "dist\/images\/magic-wand32.png",
        "48": "dist\/images\/magic-wand48.png",
        "128": "dist\/images\/magic-wand128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/*.udemy.com\/*",
        ""
    ],
    "action": {
        "default_title": "Click Me",
        "default_popup": "dist\/popup.html"
    },
    "background": {
        "service_worker": "dist\/js\/index.js"
    },
    "options_page": "dist\/option.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.udemy.com\/course\/*\/learn\/*"
            ],
            "js": [
                "dist\/js\/injector.js"
            ],
            "css": [
                "dist\/css\/injector.css"
            ]
        }
    ]
}