LeetRooms
Multiplayer rooms for LeetCode.
Apa itu LeetRooms?
LeetRooms adalah ekstensi Chrome yang dikembangkan oleh https://leetrooms.com, dan fitur utamanya adalah "Multiplayer rooms for LeetCode.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi LeetRooms
Unduh file ekstensi LeetRooms dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | LeetRooms |
ID | ekldadcjhbmljcefnilihgagmnmmlfcd |
URL Resmi | https://chromewebstore.google.com/detail/leetrooms/ekldadcjhbmljcefnilihgagmnmmlfcd |
Deskripsi | Multiplayer rooms for LeetCode. |
Ukuran File | 52.47 KB |
Jumlah Instalasi | 3,394 |
Versi Saat Ini | 0.1.11 |
Terakhir Diperbarui | 2023-05-29 |
Tanggal Publikasi | 2023-01-28 |
Penilaian | 3.60/5 Total 5 Penilaian |
Pengembang | https://leetrooms.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/marwanhawari/LeetRooms |
URL Halaman Bantuan | https://github.com/marwanhawari/LeetRooms/issues |
URL Halaman Kebijakan Privasi | https://leetrooms.com/privacy-policy |
Bahasa yang Didukung | 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" } } |