LeetRooms
Multiplayer rooms for LeetCode.
LeetRooms란 무엇입니까?
LeetRooms은(는) https://leetrooms.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Multiplayer rooms for LeetCode."입니다.
확장 프로그램 스크린샷
LeetRooms 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |