LeetRooms
Multiplayer rooms for LeetCode.
LeetRoomsคืออะไร?
LeetRooms เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://leetrooms.com และคุณลักษณะหลักของมันคือ "Multiplayer rooms for LeetCode."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LeetRooms
ดาวน์โหลดไฟล์ส่วนขยาย LeetRooms ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
LeetRooms adds multiplayer rooms to LeetCode. The extension adds another panel to the new LeetCode UI so that you can chat with other people in your room while solving the questions. It's perfect for collaboration or even competition! Note: You need to use the new LeetCode UI in order to use the LeetRooms extension.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | LeetRooms |
ID | ekldadcjhbmljcefnilihgagmnmmlfcd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/leetrooms/ekldadcjhbmljcefnilihgagmnmmlfcd |
คำอธิบาย | Multiplayer rooms for LeetCode. |
ขนาดไฟล์ | 52.47 KB |
จำนวนการติดตั้ง | 3,394 |
เวอร์ชันปัจจุบัน | 0.1.11 |
อัปเดตครั้งล่าสุด | 2023-05-29 |
วันที่เผยแพร่ | 2023-01-28 |
คะแนน | 3.60/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | https://leetrooms.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/marwanhawari/LeetRooms |
URL หน้าช่วยเหลือ | https://github.com/marwanhawari/LeetRooms/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://leetrooms.com/privacy-policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LeetRooms", "version": "0.1.11", "description": "Multiplayer rooms for LeetCode.", "homepage_url": "https:\/\/leetrooms.com", "permissions": [ "activeTab", "storage", "webRequest" ], "host_permissions": [ "https:\/\/leetcode.com\/problems\/*" ], "action": { "default_icon": { "16": "icons\/16.png", "24": "icons\/24.png", "32": "icons\/32.png" }, "default_popup": "popup.html" }, "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/problems\/*" ], "css": [ "content.css" ], "js": [ "content.js" ] }, { "matches": [ "https:\/\/leetcode.com\/*" ], "exclude_matches": [ "https:\/\/leetcode.com\/problems\/*" ], "css": [ "panel.css" ], "js": [ "panel.js" ] } ], "background": { "service_worker": "background.js" } } |