typical90_extension
Chrome extension that makes typical90 easier to use.
Apa itu typical90_extension?
typical90_extension adalah ekstensi Chrome yang dikembangkan oleh taketakeyyy, dan fitur utamanya adalah "Chrome extension that makes typical90 easier to use.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi typical90_extension
Unduh file ekstensi typical90_extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
AtCoderの「競プロ典型 90 問」のページを少し使いやすくします。 * E869120さんの問題画像、解説画像、サンプルコードへのリンクを追加します。 * 問題ページで、問題を難易度順に並び替えることができます。
Informasi Dasar Ekstensi
Nama | typical90_extension |
ID | olilmbfbgdnilofdfbladkgbbfecbidb |
URL Resmi | https://chromewebstore.google.com/detail/typical90extension/olilmbfbgdnilofdfbladkgbbfecbidb |
Deskripsi | Chrome extension that makes typical90 easier to use. |
Ukuran File | 23.81 KB |
Jumlah Instalasi | 132 |
Versi Saat Ini | 1.2.1 |
Terakhir Diperbarui | 2023-05-19 |
Tanggal Publikasi | 2021-04-23 |
Pengembang | taketakeyyy |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/taketakeyyy/typical90_extension |
URL Halaman Bantuan | https://github.com/taketakeyyy/typical90_extension |
Bahasa yang Didukung | 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" ] } |