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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |