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 |
官方網址 | 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 |
電子郵箱 | [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" } } |