CF ON STEROIDS
It enhances the Codeforces user profile according to selected options locally
什么是CF ON STEROIDS?
CF ON STEROIDS是由iManageDs开发的Chrome扩展程序,该扩展的主要功能是“It enhances the Codeforces user profile according to selected options locally”。
扩展截图
下载CF ON STEROIDS扩展crx文件
下载CF ON STEROIDS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
It enables user to change their profile rating, contribution and roles in Codeforces.
扩展基本信息
名称 | CF ON STEROIDS |
ID | gnpecblcobafkekjmocbbeabephkgjpj |
官方URL | https://chromewebstore.google.com/detail/cf-on-steroids/gnpecblcobafkekjmocbbeabephkgjpj |
简介 | It enhances the Codeforces user profile according to selected options locally |
文件大小 | 44.89 KB |
安装次数 | 208 |
当前版本 | 1.0.0 |
更新时间 | 2020-12-12 |
上架时间 | 2020-12-11 |
评分 | 5.00/5 共4次评分 |
开发者 | iManageDs |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CF ON STEROIDS", "description": "It enhances the Codeforces user profile according to selected options locally", "version": "1.0.0", "browser_action": { "default_popup": "steroids.html", "default_icon": "ico64.png" }, "icons": { "16": "ico16.png", "48": "ico48.png", "64": "ico64.png", "128": "ico128.png", "256": "ico256.png", "512": "ico512.png" }, "content_scripts": [ { "matches": [ "http:\/\/codeforces.com\/*", "https:\/\/codeforces.com\/*" ], "js": [ "script.js" ], "all_frames": true } ], "permissions": [ "tabs", "storage" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "Opens steroids.html" } }, "manifest_version": 2 } |