typical90_extension
Chrome extension that makes typical90 easier to use.
O que é typical90_extension?
typical90_extension é uma extensão do Chrome desenvolvida por taketakeyyy, e sua principal característica é "Chrome extension that makes typical90 easier to use.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão typical90_extension
Baixe arquivos de extensão typical90_extension 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
AtCoderの「競プロ典型 90 問」のページを少し使いやすくします。 * E869120さんの問題画像、解説画像、サンプルコードへのリンクを追加します。 * 問題ページで、問題を難易度順に並び替えることができます。
Informações Básicas da Extensão
Nome | typical90_extension |
ID | olilmbfbgdnilofdfbladkgbbfecbidb |
URL Oficial | https://chromewebstore.google.com/detail/typical90extension/olilmbfbgdnilofdfbladkgbbfecbidb |
Descrição | Chrome extension that makes typical90 easier to use. |
Tamanho do Arquivo | 23.81 KB |
Contagem de Instalações | 132 |
Versão Atual | 1.2.1 |
Última Atualização | 2023-05-19 |
Data de Publicação | 2021-04-23 |
Desenvolvedor | taketakeyyy |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/taketakeyyy/typical90_extension |
URL da Página de Ajuda | https://github.com/taketakeyyy/typical90_extension |
Idiomas Suportados | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "typical90_extension", "short_name": "ty90ex", "description": "Chrome extension that makes typical90 easier to use.", "manifest_version": 3, "version": "1.2.1", "author": "taketakeyyy", "icons": { "16": "icon\/icon_x16.png", "32": "icon\/icon_x32.png", "48": "icon\/icon_x48.png", "128": "icon\/icon_x128(x96).png" }, "action": { "default_title": "typical90_extension", "default_icon": { "19": "icon\/icon_x19.png", "38": "icon\/icon_x38.png" } }, "content_scripts": [ { "js": [ "bin\/content_scripts.js" ], "matches": [ "http:\/\/atcoder.jp\/contests\/typical90\/*", "https:\/\/atcoder.jp\/contests\/typical90\/*" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "storage" ] } |