AtCoder Unit Test
Generate unit tests from AtCoder's problem page.
O que é AtCoder Unit Test?
AtCoder Unit Test é uma extensão do Chrome desenvolvida por YujiSoftware, e sua principal característica é "Generate unit tests from AtCoder's problem page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão AtCoder Unit Test
Baixe arquivos de extensão AtCoder Unit Test 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
This add-on will generate unit tests from AtCoder's problem page. 1. Open AtCoder problem page 2. Right click → Click "Generate unit test" This will copy the unit test. After that, please do "paste" with an editor. Supported languages: Java (JUnit), C# (MS Test), Python3 (unittest)
Informações Básicas da Extensão
Nome | AtCoder Unit Test |
ID | lmahhninbclefepjbcdfbcjnancipfmi |
URL Oficial | https://chromewebstore.google.com/detail/atcoder-unit-test/lmahhninbclefepjbcdfbcjnancipfmi |
Descrição | Generate unit tests from AtCoder's problem page. |
Tamanho do Arquivo | 43.53 KB |
Contagem de Instalações | 894 |
Versão Atual | 2.1.5 |
Última Atualização | 2021-11-03 |
Data de Publicação | 2020-05-27 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | YujiSoftware |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/YujiSoftware/ac-unit-test |
Idiomas Suportados | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AtCoder Unit Test", "version": "2.1.5", "manifest_version": 2, "description": "__MSG_extDescription__", "default_locale": "en", "applications": { "gecko": { "id": "@acunittest" } }, "permissions": [ "*:\/\/*.contest.atcoder.jp\/tasks\/*", "*:\/\/atcoder.jp\/contests\/*\/tasks\/*", "contextMenus", "clipboardWrite", "storage" ], "icons": { "48": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.contest.atcoder.jp\/tasks\/*", "*:\/\/atcoder.jp\/contests\/*\/tasks\/*" ], "js": [ "jquery-3.3.1.min.js", "content.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "chrome_style": true } } |