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 |
电子邮箱 | [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" ] } |