LeetSuite
Additional features for LeetCode
O que é LeetSuite?
LeetSuite é uma extensão do Chrome desenvolvida por Song, e sua principal característica é "Additional features for LeetCode".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão LeetSuite
Baixe arquivos de extensão LeetSuite no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
LeetSuite is completely hands-off and stays out of your way! LeetSuite works in the background so you can focus on LeetCode instead of going back and forth between answering questions and using the features of the extension. It includes a minimal popup UI that shows you what question you should retry, based on a spaced repetition algorithm. It also includes a home page that allows you to view stats on your submissions along with all the questions in your queue. Features -------------- - completely hands-off, all the features work without you doing anything! - records stats on your submissions and acceptance rate for each question - reminds you to redo questions after a certain time interval, based on spaced repetition
Informações Básicas da Extensão
Nome | |
ID | fgpjfncacnkpldghchkgcpcgehbjbofe |
URL Oficial | https://chrome.google.com/webstore/detail/leetsuite/fgpjfncacnkpldghchkgcpcgehbjbofe |
Descrição | Additional features for LeetCode |
Tamanho do Arquivo | 58.94 KB |
Contagem de Instalações | 279 |
Versão Atual | 1.0.0 |
Última Atualização | 2020-08-11 |
Data de Publicação | 2020-08-11 |
Classificação | 3.67/5 Total de 3 Avaliações |
Desenvolvedor | Song |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetSuite", "version": "1.0.0", "description": "Additional features for LeetCode", "manifest_version": 2, "permissions": [ "storage", "webRequest", "*:\/\/*.leetcode.com\/*" ], "background": { "scripts": [ ".\/background\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/leetcode.com\/problems\/*" ], "run_at": "document_idle", "js": [ ".\/content\/content.js" ] } ], "browser_action": { "default_popup": ".\/ui\/popup\/index.html", "default_icon": { "16": ".\/icons\/favicon-16x16.png", "32": ".\/icons\/favicon-32x32.png", "48": ".\/icons\/favicon-48x48.png", "128": ".\/icons\/favicon-128x128.png" } }, "icons": { "16": ".\/icons\/favicon-16x16.png", "32": ".\/icons\/favicon-32x32.png", "48": ".\/icons\/favicon-48x48.png", "128": ".\/icons\/favicon-128x128.png" } } |