Duolingo Progress Bar

A linear progress bar for your Duolingo courses

Was ist Duolingo Progress Bar?

Duolingo Progress Bar ist eine Chrome-Erweiterung, die von zorapeteri entwickelt wurde, und ihr Hauptmerkmal ist "A linear progress bar for your Duolingo courses".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Duolingo Progress Bar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Duolingo Progress Bar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Features: 

- Get a quick and simple overview of your progress
- See your percentage score on courses and stories
- Go to skill by clicking it in the progress bar                    

Grundlegende Informationen zur Erweiterung

Name Duolingo Progress Bar Duolingo Progress Bar
ID kppleianlialhpkifogjjfldgifhlgpg
Offizielle URL https://chrome.google.com/webstore/detail/duolingo-progress-bar/kppleianlialhpkifogjjfldgifhlgpg
Beschreibung A linear progress bar for your Duolingo courses
Dateigröße 32.42 KB
Installationsanzahl 223
Aktuelle Version 0.6
Letztes Update 2022-10-10
Veröffentlichungsdatum 2021-09-12
Bewertung 3.20/5 Insgesamt 5 Bewertungen
Entwickler zorapeteri
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/zorapeteri/duolingo-progress-bar
Hilfeseite URL https://github.com/zorapeteri/duolingo-progress-bar/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Duolingo Progress Bar",
    "description": "A linear progress bar for your Duolingo courses",
    "version": "0.6",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.duolingo.com\/*",
                "http:\/\/www.duolingo.com\/*"
            ],
            "js": [
                "intercept.js",
                "content.js"
            ],
            "css": [
                "scrollbar.css",
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon\/16.png",
            "32": "icon\/32.png",
            "48": "icon\/48.png",
            "128": "icon\/128.png"
        }
    },
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    }
}