Codeforce submission status link
Add submission status link to the problem page
什么是Codeforce submission status link?
Codeforce submission status link是由https://fatminmin.com开发的Chrome扩展程序,该扩展的主要功能是“Add submission status link to the problem page”。
扩展截图
下载Codeforce submission status link扩展crx文件
下载Codeforce submission status link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a link to the problem submission page at the end of sidebar for Codeforces.
扩展基本信息
名称 | Codeforce submission status link |
ID | pckjjhfnnmonhkfekgnbbdafndfjpjap |
官方URL | https://chromewebstore.google.com/detail/codeforce-submission-stat/pckjjhfnnmonhkfekgnbbdafndfjpjap |
简介 | Add submission status link to the problem page |
文件大小 | 40.68 KB |
安装次数 | 637 |
当前版本 | 1.0.4 |
更新时间 | 2016-08-29 |
上架时间 | 2016-08-29 |
评分 | 3.00/5 共2次评分 |
开发者 | https://fatminmin.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/chiehmin/CodeforcesExtension |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Codeforce submission status link", "description": "Add submission status link to the problem page", "version": "1.0.4", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.codeforces.com\/problemset\/problem\/*" ], "js": [ "jquery-3.1.0.min.js", "problemset.js" ], "run_at": "document_idle" }, { "matches": [ "http:\/\/*.codeforces.com\/group\/*\/contest\/*\/problem\/*" ], "js": [ "jquery-3.1.0.min.js", "group_problem.js" ], "run_at": "document_idle" } ] } |