LeetSuite
Additional features for LeetCode
LeetSuiteとは何ですか?
LeetSuiteはSongによって開発されたChromeの拡張機能で、その主な機能は「Additional features for LeetCode」です。
拡張機能のスクリーンショット
LeetSuite拡張機能のCRXファイルをダウンロード
LeetSuite拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
LeetSuite is completely hands-off and stays out of your way! LeetSuite works in the background so you can focus on LeetCode instead of going back and forth between answering questions and using the features of the extension. It includes a minimal popup UI that shows you what question you should retry, based on a spaced repetition algorithm. It also includes a home page that allows you to view stats on your submissions along with all the questions in your queue. Features -------------- - completely hands-off, all the features work without you doing anything! - records stats on your submissions and acceptance rate for each question - reminds you to redo questions after a certain time interval, based on spaced repetition
拡張機能の基本情報
名前 | |
ID | fgpjfncacnkpldghchkgcpcgehbjbofe |
公式URL | https://chrome.google.com/webstore/detail/leetsuite/fgpjfncacnkpldghchkgcpcgehbjbofe |
説明 | Additional features for LeetCode |
ファイルサイズ | 58.94 KB |
インストール数 | 279 |
現在のバージョン | 1.0.0 |
最終更新日 | 2020-08-11 |
公開日 | 2020-08-11 |
評価 | 3.67/5 合計 3 レビュー |
開発者 | Song |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetSuite", "version": "1.0.0", "description": "Additional features for LeetCode", "manifest_version": 2, "permissions": [ "storage", "webRequest", "*:\/\/*.leetcode.com\/*" ], "background": { "scripts": [ ".\/background\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/leetcode.com\/problems\/*" ], "run_at": "document_idle", "js": [ ".\/content\/content.js" ] } ], "browser_action": { "default_popup": ".\/ui\/popup\/index.html", "default_icon": { "16": ".\/icons\/favicon-16x16.png", "32": ".\/icons\/favicon-32x32.png", "48": ".\/icons\/favicon-48x48.png", "128": ".\/icons\/favicon-128x128.png" } }, "icons": { "16": ".\/icons\/favicon-16x16.png", "32": ".\/icons\/favicon-32x32.png", "48": ".\/icons\/favicon-48x48.png", "128": ".\/icons\/favicon-128x128.png" } } |