Duo Strength
Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu
什麼是Duo Strength?
Duo Strength是由Toran Sharma開發的Chrome擴展程式,該擴展的主要功能是“Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu”。
擴展截圖
下載Duo Strength擴展crx文件
下載Duo Strength擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | oghbejipobmlmgfbdjmfgnnhepngcmle |
官方網址 | 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 } } |