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
扩展基本信息
名称 | Codeforces Enhancer |
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 |
电子邮箱 | [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 } } |