Udemy Permanent Progress Bar

Chrome extension that displays a permanent progress bar underneath the video player

Hvad er Udemy Permanent Progress Bar?

Udemy Permanent Progress Bar er en Chrome-udvidelse udviklet af DInteractive, og dens hovedfunktion er "Chrome extension that displays a permanent progress bar underneath the video player".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Udemy Permanent Progress Bar-udvidelses-CRX-fil

Download Udemy Permanent Progress Bar-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This extension adds a tiny unobtrusive permanent progress bar underneath the Udemy course video player. 

If you want to be aware of the remaining time of the current lesson without needing to interact with the video or covering the video contents, this extension adds a tiny progress bar outside of the video area which does not partially hide course contents and is displayed permanently without you needing to constantly hover over the video.                    

Grundlæggende oplysninger om udvidelsen

Navn Udemy Permanent Progress Bar Udemy Permanent Progress Bar
ID gjjeocdbniffbljmfagppoeclllgmoee
Officiel URL https://chromewebstore.google.com/detail/udemy-permanent-progress/gjjeocdbniffbljmfagppoeclllgmoee
Beskrivelse Chrome extension that displays a permanent progress bar underneath the video player
Filstørrelse 15.45 KB
Antal Installationer 25
Nuværende Version 1.0.1
Senest Opdateret 2023-02-22
Udgivelsesdato 2023-02-22
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler DInteractive
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Udemy Permanent Progress Bar",
    "version": "1.0.1",
    "description": "Chrome extension that displays a permanent progress bar underneath the video player",
    "author": "Diego de Blas Mateo",
    "action": {
        "default_icon": "udemy-permanent-progress-bar-icon-16x16.png"
    },
    "icons": {
        "16": "udemy-permanent-progress-bar-icon-16x16.png",
        "48": "udemy-permanent-progress-bar-icon-48x48.png",
        "128": "udemy-permanent-progress-bar-icon-128x128.png"
    },
    "content_scripts": [
        {
            "js": [
                "app.js"
            ],
            "matches": [
                "https:\/\/www.udemy.com\/course\/*\/learn\/*"
            ]
        }
    ]
}