LeetCode Timer
LeetCode Timer is a Chrome extension for timing LeetCode problems
LeetCode Timerとは何ですか?
LeetCode Timerはbriankoswによって開発されたChromeの拡張機能で、その主な機能は「LeetCode Timer is a Chrome extension for timing LeetCode problems」です。
拡張機能のスクリーンショット
LeetCode Timer拡張機能のCRXファイルをダウンロード
LeetCode Timer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
LeetCode Timer is an extension for timing LeetCode Problems. Whether you're practicing time management while solving problems or you simply want to understand how long you're taking, LeetCode Timer provides an easy way to time yourself - no more going back and forth between your phone's timer and your problem! Features: The extension will embed a stopwatch, right next to the Run Code and Submit buttons, into any LeetCode problem you're solving. The following are some of the features that will be added soon™: • ⏱ Switch between timer mode (count down) and stopwatch mode (count up) • ⏳ Set time limits - customizable based on problem difficulty - for timer mode • 💾 Save time spent when submission is accepted
拡張機能の基本情報
名前 | LeetCode Timer |
ID | djgmechpkngjklelhkninhhhibghmhkj |
公式URL | https://chromewebstore.google.com/detail/leetcode-timer/djgmechpkngjklelhkninhhhibghmhkj |
説明 | LeetCode Timer is a Chrome extension for timing LeetCode problems |
ファイルサイズ | 548 KB |
インストール数 | 57 |
現在のバージョン | 0.2.1 |
最終更新日 | 2022-02-23 |
公開日 | 2022-02-20 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | briankosw |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/briankosw/leetcode-timer |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LeetCode Timer", "description": "LeetCode Timer is a Chrome extension for timing LeetCode problems", "homepage_url": "https:\/\/github.com\/briankosw\/leetcode-timer", "version": "0.2.1", "icons": { "128": "dist\/images\/lct.png" }, "content_scripts": [ { "matches": [ "*:\/\/leetcode.com\/problems\/*" ], "js": [ "dist\/browser-polyfill.js", "dist\/content_script.js" ], "css": [ "dist\/css\/styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "dist\/images\/dark-timer.svg", "dist\/images\/option.svg", "dist\/images\/reset.svg" ], "matches": [ "https:\/\/leetcode.com\/*" ] } ] } |