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 |
官方網址 | 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" ] } } |