Codeforces++
Codeforces extension pack
什么是Codeforces++?
Codeforces++是由Leonardo Riether开发的Chrome扩展程序,该扩展的主要功能是“Codeforces extension pack”。
扩展截图
下载Codeforces++扩展crx文件
下载Codeforces++扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Ever wanted Codeforces to have handy shortcuts, auto-updating standings, problem tags that you can hide/show on demand, better site navigation, a dark theme, or all of the above? These and many more features are available in Codeforces++! This extension is open-source and hosted at GitHub https://github.com/LeoRiether/CodeforcesPP
扩展基本信息
名称 | Codeforces++ |
ID | ehbcfilpfnlahficlpimomapmbccieoi |
官方URL | https://chromewebstore.google.com/detail/codeforces++/ehbcfilpfnlahficlpimomapmbccieoi |
简介 | Codeforces extension pack |
文件大小 | 28.61 KB |
安装次数 | 3,692 |
当前版本 | 2.4.0 |
更新时间 | 2023-02-22 |
上架时间 | 2020-05-20 |
评分 | 4.82/5 共17次评分 |
开发者 | Leonardo Riether |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/LeoRiether/CodeforcesPP |
帮助页面URL | https://github.com/LeoRiether/CodeforcesPP/issues/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Codeforces++", "description": "Codeforces extension pack", "version": "2.4.0", "manifest_version": 2, "permissions": [ "storage", "*:\/\/codeforces.com\/*", "http:\/\/fonts.googleapis.com\/*", "https:\/\/fonts.googleapis.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/codeforces.com\/*" ], "js": [ "browser-polyfill.min.js", "contentScript.js" ], "css": [ "common.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "*.js" ], "background": { "persistent": false, "scripts": [ "browser-polyfill.min.js", "background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_title": "Codeforces++" }, "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" } } |