LeetRooms
Multiplayer rooms for LeetCode.
什么是LeetRooms?
LeetRooms是由https://leetrooms.com开发的Chrome扩展程序,该扩展的主要功能是“Multiplayer rooms for LeetCode.”。
扩展截图
下载LeetRooms扩展crx文件
下载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" } } |