typical90_extension
Chrome extension that makes typical90 easier to use.
typical90_extensionとは何ですか?
typical90_extensionはtaketakeyyyによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension that makes typical90 easier to use.」です。
拡張機能のスクリーンショット
typical90_extension拡張機能のCRXファイルをダウンロード
typical90_extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
AtCoderの「競プロ典型 90 問」のページを少し使いやすくします。 * E869120さんの問題画像、解説画像、サンプルコードへのリンクを追加します。 * 問題ページで、問題を難易度順に並び替えることができます。
拡張機能の基本情報
名前 | typical90_extension |
ID | olilmbfbgdnilofdfbladkgbbfecbidb |
公式URL | https://chromewebstore.google.com/detail/typical90extension/olilmbfbgdnilofdfbladkgbbfecbidb |
説明 | Chrome extension that makes typical90 easier to use. |
ファイルサイズ | 23.81 KB |
インストール数 | 132 |
現在のバージョン | 1.2.1 |
最終更新日 | 2023-05-19 |
公開日 | 2021-04-23 |
開発者 | taketakeyyy |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/taketakeyyy/typical90_extension |
ヘルプページのURL | https://github.com/taketakeyyy/typical90_extension |
対応言語 | 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" ] } |