typical90_extension
Chrome extension that makes typical90 easier to use.
What is typical90_extension?
typical90_extension is a Chrome extension developed by taketakeyyy, and its main feature is "Chrome extension that makes typical90 easier to use.".
Extension Screenshots
Download typical90_extension Extension CRX File
Download typical90_extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
AtCoderの「競プロ典型 90 問」のページを少し使いやすくします。 * E869120さんの問題画像、解説画像、サンプルコードへのリンクを追加します。 * 問題ページで、問題を難易度順に並び替えることができます。
Extension Basic Information
Name | typical90_extension |
ID | olilmbfbgdnilofdfbladkgbbfecbidb |
Official URL | https://chromewebstore.google.com/detail/typical90extension/olilmbfbgdnilofdfbladkgbbfecbidb |
Description | Chrome extension that makes typical90 easier to use. |
File Size | 23.81 KB |
Installation Count | 132 |
Current Version | 1.2.1 |
Last Updated | 2023-05-19 |
Publish Date | 2021-04-23 |
Developer | taketakeyyy |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/taketakeyyy/typical90_extension |
Help Page URL | https://github.com/taketakeyyy/typical90_extension |
Supported Languages | 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" ] } |