Duo Strength

Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu

Qu'est-ce que Duo Strength ?

Duo Strength est une extension Chrome développée par Toran Sharma, et sa fonction principale est "Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Duo Strength

Téléchargez les fichiers d'extension Duo Strength au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Duo Strength is a browser extension that adds back into the Duolingo webpage an indication of the strength of each skill. Any skills that need strengthening (i.e. not at 100% strength) are displayed in a clickable list at the top of the tree for quick access. Designed to provide much of the information on duome.eu/Username/progress on your duolingo tree itself.

If you have comments bugs or issues, or want to help improve this extension, please visit its GitHub page: https://github.com/ToranSharma/Duo-Strength                    

Informations de Base sur l'Extension

Nom Duo Strength Duo Strength
ID oghbejipobmlmgfbdjmfgnnhepngcmle
URL Officiel https://chromewebstore.google.com/detail/duo-strength/oghbejipobmlmgfbdjmfgnnhepngcmle
Description Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu
Taille du Fichier 99.53 KB
Nombre d'Installations 2,078
Version Actuelle 2.1.0
Dernière Mise à Jour 2022-11-14
Date de Publication 2020-07-02
Évaluation 4.63/5 Total 40 Évaluations
Développeur Toran Sharma
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ToranSharma/Duo-Strength
URL de la Page d'Aide https://github.com/ToranSharma/Duo-Strength
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duo Strength",
    "description": "Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu",
    "version": "2.1.0",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "show_matches": [
            "https:\/\/www.duolingo.com\/*",
            "https:\/\/preview.duolingo.com\/*",
            "https:\/\/www-internal.duolingo.com\/*"
        ],
        "default_icon": {
            "16": "icons\/icon_16.png",
            "32": "icons\/icon_32.png",
            "48": "icons\/icon_48.png",
            "64": "icons\/icon_64.png",
            "128": "icons\/icon_128.png"
        },
        "default_title": "Duo Strength",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.duolingo.com\/*",
                "https:\/\/preview.duolingo.com\/*",
                "https:\/\/www-internal.duolingo.com\/*"
            ],
            "js": [
                "duoStrength.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/focus.svg",
                "images\/defocus.svg",
                "images\/popout.svg",
                "images\/loading.svg",
                "styles\/stylesheet.css",
                "defaultOptions.json",
                "disabledOptions.json"
            ],
            "matches": [
                "https:\/\/www.duolingo.com\/*",
                "https:\/\/preview.duolingo.com\/*",
                "https:\/\/www-internal.duolingo.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}