typical90_extension
Chrome extension that makes typical90 easier to use.
Cos'è typical90_extension?
typical90_extension è un'estensione di Chrome sviluppata da taketakeyyy, e la sua funzione principale è "Chrome extension that makes typical90 easier to use.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione typical90_extension
Scarica i file di estensione typical90_extension 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
AtCoderの「競プロ典型 90 問」のページを少し使いやすくします。 * E869120さんの問題画像、解説画像、サンプルコードへのリンクを追加します。 * 問題ページで、問題を難易度順に並び替えることができます。
Informazioni di Base sull'Estensione
Nome | typical90_extension |
ID | olilmbfbgdnilofdfbladkgbbfecbidb |
URL Ufficiale | https://chromewebstore.google.com/detail/typical90extension/olilmbfbgdnilofdfbladkgbbfecbidb |
Descrizione | Chrome extension that makes typical90 easier to use. |
Dimensione del File | 23.81 KB |
Conteggio Installazioni | 132 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2023-05-19 |
Data di Pubblicazione | 2021-04-23 |
Sviluppatore | taketakeyyy |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/taketakeyyy/typical90_extension |
URL della Pagina di Aiuto | https://github.com/taketakeyyy/typical90_extension |
Lingue Supportate | 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" ] } |