Codeforces Enhancer
Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link
Codeforces Enhancerとは何ですか?
Codeforces Enhancerはalexander.agulenkoによって開発されたChromeの拡張機能で、その主な機能は「Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link」です。
拡張機能のスクリーンショット
Codeforces Enhancer拡張機能のCRXファイルをダウンロード
Codeforces Enhancer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chrome extension that makes Codeforces better: supports multiple ratings graph, colorizes standings by used programming languages, adds "Hide/Show solved problems" link to Problemset page 拡張機能の基本情報
| 名前 | |
| ID | ocmandagmgmkcplckgnfgaokpgkfenmp |
| 公式URL | https://chromewebstore.google.com/detail/codeforces-enhancer/ocmandagmgmkcplckgnfgaokpgkfenmp |
| 説明 | Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link |
| ファイルサイズ | 25.12 KB |
| インストール数 | 13,461 |
| 現在のバージョン | 1.2 |
| 最終更新日 | 2020-07-23 |
| 公開日 | 2015-07-27 |
| 評価 | 4.40/5 合計 35 レビュー |
| 開発者 | alexander.agulenko |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://codeforces.com/profile/agul |
| ヘルプページのURL | https://github.com/agul/cf-enhancer |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"content_scripts": [
{
"all_frames": false,
"js": [
"options.js",
"multiGraph.js"
],
"matches": [
"https:\/\/codeforces.com\/profile\/*",
"https:\/\/www.codeforces.com\/profile\/*"
],
"run_at": "document_idle"
},
{
"all_frames": false,
"js": [
"options.js",
"colorizeStandings.js"
],
"matches": [
"https:\/\/codeforces.com\/contest\/*\/standings*",
"https:\/\/www.codeforces.com\/contest\/*\/standings*",
"https:\/\/www.codeforces.com\/contest\/*\/room\/*",
"https:\/\/codeforces.com\/contest\/*\/room\/*",
"https:\/\/www.codeforces.com\/gym\/*\/standings*",
"https:\/\/codeforces.com\/gym\/*\/standings*",
"https:\/\/www.codeforces.com\/spectator\/*\/standings*",
"https:\/\/codeforces.com\/spectator\/*\/standings*"
],
"run_at": "document_idle"
},
{
"all_frames": false,
"js": [
"options.js",
"hideSolved.js"
],
"matches": [
"https:\/\/codeforces.com\/problemset",
"https:\/\/www.codeforces.com\/problemset",
"https:\/\/www.codeforces.com\/problemset\/page\/*",
"https:\/\/codeforces.com\/problemset\/page\/*"
],
"run_at": "document_idle"
}
],
"description": "Makes Codeforces better: multiple ratings graph, colorizes standings, adds \"Hide\/Show solved problems\" link",
"icons": {
"16": "logo_16x16.png",
"48": "logo_48x48.png",
"128": "logo_128x128.png"
},
"manifest_version": 2,
"name": "Codeforces Enhancer",
"short_name": "CF Enhancer",
"permissions": [
"storage"
],
"version": "1.2",
"options_page": "options_page.html",
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |