Duo Strength

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

Duo Strength क्या है?

Duo Strength Toran Sharma द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        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                    

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

नाम Duo Strength Duo Strength
ID oghbejipobmlmgfbdjmfgnnhepngcmle
आधिकारिक URL https://chromewebstore.google.com/detail/duo-strength/oghbejipobmlmgfbdjmfgnnhepngcmle
विवरण Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu
फ़ाइल का आकार 99.53 KB
स्थापना संख्या 2,078
वर्तमान संस्करण 2.1.0
अंतिम अपडेट 2022-11-14
प्रकाशन तिथि 2020-07-02
रेटिंग 4.63/5 कुल 40 रेटिंग्स
डेवलपर Toran Sharma
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ToranSharma/Duo-Strength
सहायता पृष्ठ URL https://github.com/ToranSharma/Duo-Strength
समर्थित भाषाएँ 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
    }
}