LeetRooms
Multiplayer rooms for LeetCode.
Cos'è LeetRooms?
LeetRooms è un'estensione di Chrome sviluppata da https://leetrooms.com, e la sua funzione principale è "Multiplayer rooms for LeetCode.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione LeetRooms
Scarica i file di estensione LeetRooms in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | LeetRooms |
ID | ekldadcjhbmljcefnilihgagmnmmlfcd |
URL Ufficiale | https://chromewebstore.google.com/detail/leetrooms/ekldadcjhbmljcefnilihgagmnmmlfcd |
Descrizione | Multiplayer rooms for LeetCode. |
Dimensione del File | 52.47 KB |
Conteggio Installazioni | 3,394 |
Versione Corrente | 0.1.11 |
Ultimo Aggiornamento | 2023-05-29 |
Data di Pubblicazione | 2023-01-28 |
Valutazione | 3.60/5 Totale 5 Valutazioni |
Sviluppatore | https://leetrooms.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/marwanhawari/LeetRooms |
URL della Pagina di Aiuto | https://github.com/marwanhawari/LeetRooms/issues |
URL della Pagina della Politica sulla Privacy | https://leetrooms.com/privacy-policy |
Lingue Supportate | 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" } } |