LeetBattle
1v1 LeetCode battles against your friends to improve your coding skills fast!
LeetBattleとは何ですか?
LeetBattleはlinden.wang04によって開発されたChromeの拡張機能で、その主な機能は「1v1 LeetCode battles against your friends to improve your coding skills fast!」です。
拡張機能のスクリーンショット
LeetBattle拡張機能のCRXファイルをダウンロード
LeetBattle拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A Leetcode 1v1 platform to make data structures and algorithms fun! Create a private match with your friends or find a match online - more features incoming. * update * - elo rating - post-game chat: players will be put in a private chat room after the game to discuss - you will now win the game when your opponent disconnects
拡張機能の基本情報
名前 | LeetBattle |
ID | kidgeaockeleejmeogfcaodagaigllkp |
公式URL | https://chromewebstore.google.com/detail/leetbattle/kidgeaockeleejmeogfcaodagaigllkp |
説明 | 1v1 LeetCode battles against your friends to improve your coding skills fast! |
ファイルサイズ | 2.32 MB |
インストール数 | 338 |
現在のバージョン | 2.1.0 |
最終更新日 | 2023-12-04 |
公開日 | 2023-11-03 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | linden.wang04 |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://docs.google.com/forms/d/e/1FAIpQLSc2PRbTDMcAs7mX4hFaoiszXYoQY3Wz7_mJK0MAENb6WhHWOA/viewform?usp=sf_link |
プライバシーポリシーページのURL | https://sites.google.com/view/tabopener/home |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetBattle", "description": "1v1 LeetCode battles against your friends to improve your coding skills fast!", "version": "2.1.0", "manifest_version": 3, "action": { "default_popup": "popup.html" }, "minimum_chrome_version": "116", "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "notifications", "storage" ], "host_permissions": [ "http:\/\/localhost:3000\/*", "https:\/\/leet-battle.fly.dev\/*" ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" } } |