Bogosearch - LeetCode Rooms
Add rooms to LeetCode to compete solving problems with friends.
What is Bogosearch - LeetCode Rooms?
Bogosearch - LeetCode Rooms is a Chrome extension developed by Sunny Guan, and its main feature is "Add rooms to LeetCode to compete solving problems with friends.".
Extension Screenshots
Download Bogosearch - LeetCode Rooms Extension CRX File
Download Bogosearch - LeetCode Rooms extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Are you sad that binarysearch.com is down? Want to practice LeetCode questions and flex on your friends too? This is the perfect extension for you! We added rooms to LeetCode so you can race to solve problems with your friends with chat, leaderboard, topic selection, unlimited number of questions, and more. Getting Started: 1. Install this extension. 2. Go to a LeetCode page. 3. Join or create a room. 4. Invite friends! Features: 1. Leaderboard 2. Blind 75 + NeetCode 150 problemsets 3. Specific problem selection 4. Chat with @username mention
Extension Basic Information
Name | Bogosearch - LeetCode Rooms |
ID | elcfbhjmhecbkfilbohmojhoiidpokjf |
Official URL | https://chromewebstore.google.com/detail/bogosearch-leetcode-rooms/elcfbhjmhecbkfilbohmojhoiidpokjf |
Description | Add rooms to LeetCode to compete solving problems with friends. |
File Size | 2.88 MB |
Installation Count | 217 |
Current Version | 0.4.3 |
Last Updated | 2023-02-22 |
Publish Date | 2022-10-25 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Sunny Guan |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/sunnyguan/leetcode-rooms-chrome-extension |
Help Page URL | https://github.com/sunnyguan/leetcode-rooms-chrome-extension |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bogosearch - LeetCode Rooms", "version": "0.4.3", "description": "Add rooms to LeetCode to compete solving problems with friends.", "content_scripts": [ { "js": [ "scripts\/questions_title_mapping.js", "scripts\/socket.io.2.js", "scripts\/constants.js", "scripts\/utils.js", "scripts\/content.js" ], "matches": [ "https:\/\/leetcode.com\/problems\/*" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "tabs" ], "icons": { "128": "128.png", "64": "64.png" } } |