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 |
官方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 } } |