LeetRooms
Multiplayer rooms for LeetCode.
Co to jest LeetRooms?
LeetRooms to rozszerzenie Chrome opracowane przez https://leetrooms.com, a jego główną funkcją jest „Multiplayer rooms for LeetCode.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia LeetRooms
Pobierz pliki rozszerzeń LeetRooms w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | LeetRooms |
ID | ekldadcjhbmljcefnilihgagmnmmlfcd |
Oficjalny URL | https://chromewebstore.google.com/detail/leetrooms/ekldadcjhbmljcefnilihgagmnmmlfcd |
Opis | Multiplayer rooms for LeetCode. |
Rozmiar pliku | 52.47 KB |
Liczba instalacji | 3,394 |
Aktualna Wersja | 0.1.11 |
Ostatnia Aktualizacja | 2023-05-29 |
Data Publikacji | 2023-01-28 |
Ocena | 3.60/5 Łącznie 5 Oceny |
Deweloper | https://leetrooms.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/marwanhawari/LeetRooms |
Adres URL Strony Pomocy | https://github.com/marwanhawari/LeetRooms/issues |
Adres URL Strony Polityki Prywatności | https://leetrooms.com/privacy-policy |
Obsługiwane Języki | 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" } } |