Duo Strength

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

Duo Strength là gì?

Duo Strength là một tiện ích mở rộng Chrome được phát triển bởi Toran Sharma, và tính năng chính của nó là "Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Duo Strength

Tải xuống các tệp mở rộng Duo Strength dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Duo Strength Duo Strength
ID oghbejipobmlmgfbdjmfgnnhepngcmle
URL Chính Thức https://chromewebstore.google.com/detail/duo-strength/oghbejipobmlmgfbdjmfgnnhepngcmle
Mô tả Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu
Kích Thước Tệp 99.53 KB
Số Lần Cài Đặt 2,078
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2022-11-14
Ngày Phát Hành 2020-07-02
Đánh Giá 4.63/5 Tổng số 40 Đánh Giá
Nhà Phát Triển Toran Sharma
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ToranSharma/Duo-Strength
URL Trang Trợ Giúp https://github.com/ToranSharma/Duo-Strength
Ngôn Ngữ Được Hỗ Trợ 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
    }
}