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" } } |