Duolingo Progress Bar
A linear progress bar for your Duolingo courses
Duolingo Progress Barとは何ですか?
Duolingo Progress Barはzorapeteriによって開発されたChromeの拡張機能で、その主な機能は「A linear progress bar for your Duolingo courses」です。
拡張機能のスクリーンショット
Duolingo Progress Bar拡張機能のCRXファイルをダウンロード
Duolingo Progress Bar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Features: - Get a quick and simple overview of your progress - See your percentage score on courses and stories - Go to skill by clicking it in the progress bar
拡張機能の基本情報
名前 | |
ID | kppleianlialhpkifogjjfldgifhlgpg |
公式URL | https://chrome.google.com/webstore/detail/duolingo-progress-bar/kppleianlialhpkifogjjfldgifhlgpg |
説明 | A linear progress bar for your Duolingo courses |
ファイルサイズ | 32.42 KB |
インストール数 | 223 |
現在のバージョン | 0.6 |
最終更新日 | 2022-10-10 |
公開日 | 2021-09-12 |
評価 | 3.20/5 合計 5 レビュー |
開発者 | zorapeteri |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/zorapeteri/duolingo-progress-bar |
ヘルプページのURL | https://github.com/zorapeteri/duolingo-progress-bar/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Duolingo Progress Bar", "description": "A linear progress bar for your Duolingo courses", "version": "0.6", "content_scripts": [ { "matches": [ "https:\/\/www.duolingo.com\/*", "http:\/\/www.duolingo.com\/*" ], "js": [ "intercept.js", "content.js" ], "css": [ "scrollbar.css", "style.css" ], "run_at": "document_start" } ], "browser_action": { "default_icon": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" } }, "icons": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" } } |