Codeforces Green Dot
Shows recent blog actions on codeforces.com platform and check your friends list status and submissions.
什么是Codeforces Green Dot?
Codeforces Green Dot是由Khaled Alam开发的Chrome扩展程序,该扩展的主要功能是“Shows recent blog actions on codeforces.com platform and check your friends list status and submissions.”。
扩展截图
下载Codeforces Green Dot扩展crx文件
下载Codeforces Green Dot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Codeforces.com platform recent actions feed & friends list status and submissions.
扩展基本信息
名称 | Codeforces Green Dot |
ID | hkdknjllamblhnehflcgeabkhkldpjcg |
官方URL | https://chromewebstore.google.com/detail/codeforces-green-dot/hkdknjllamblhnehflcgeabkhkldpjcg |
简介 | Shows recent blog actions on codeforces.com platform and check your friends list status and submissions. |
文件大小 | 233 KB |
安装次数 | 260 |
当前版本 | 2.0.1.0 |
更新时间 | 2022-02-17 |
上架时间 | 2019-10-18 |
评分 | 3.40/5 共5次评分 |
开发者 | Khaled Alam |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://codeforcesgreendot.com |
帮助页面URL | http://codeforces.com/blog/entry/49868 |
隐私政策页面URL | https://codeforcesgreendot.com/privacy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Codeforces Green Dot", "short_name": "CFGreenDot", "description": "Shows recent blog actions on codeforces.com platform and check your friends list status and submissions.", "version": "2.0.1.0", "browser_action": { "default_icon": "icons\/icon.png", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "80": "icons\/icon80.png", "128": "icons\/icon128.png" }, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/*.codeforces.com\/*" ], "css": [ "assets\/css\/bootstrap.min.css" ], "js": [ "assets\/js\/jquery.js", "assets\/js\/bootstrap.js", "assets\/js\/contentscript.js" ] } ], "background": { "content_scripts": [ "background.js" ] } } |