Bogosearch - LeetCode Rooms
Add rooms to LeetCode to compete solving problems with friends.
Cos'è Bogosearch - LeetCode Rooms?
Bogosearch - LeetCode Rooms è un'estensione di Chrome sviluppata da Sunny Guan, e la sua funzione principale è "Add rooms to LeetCode to compete solving problems with friends.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bogosearch - LeetCode Rooms
Scarica i file di estensione Bogosearch - LeetCode Rooms in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Bogosearch - LeetCode Rooms |
ID | elcfbhjmhecbkfilbohmojhoiidpokjf |
URL Ufficiale | https://chromewebstore.google.com/detail/bogosearch-leetcode-rooms/elcfbhjmhecbkfilbohmojhoiidpokjf |
Descrizione | Add rooms to LeetCode to compete solving problems with friends. |
Dimensione del File | 2.88 MB |
Conteggio Installazioni | 217 |
Versione Corrente | 0.4.3 |
Ultimo Aggiornamento | 2023-02-22 |
Data di Pubblicazione | 2022-10-25 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | Sunny Guan |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/sunnyguan/leetcode-rooms-chrome-extension |
URL della Pagina di Aiuto | https://github.com/sunnyguan/leetcode-rooms-chrome-extension |
Lingue Supportate | 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" } } |