Codeforces Green Dot

Shows recent blog actions on codeforces.com platform and check your friends list status and submissions.

What is Codeforces Green Dot?

Codeforces Green Dot is a Chrome extension developed by Khaled Alam, and its main feature is "Shows recent blog actions on codeforces.com platform and check your friends list status and submissions.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Codeforces Green Dot Extension CRX File

Download Codeforces Green Dot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Codeforces.com platform recent actions feed & friends list status and submissions.                    

Extension Basic Information

Name Codeforces Green Dot Codeforces Green Dot
ID hkdknjllamblhnehflcgeabkhkldpjcg
Official URL https://chromewebstore.google.com/detail/codeforces-green-dot/hkdknjllamblhnehflcgeabkhkldpjcg
Description Shows recent blog actions on codeforces.com platform and check your friends list status and submissions.
File Size 233 KB
Installation Count 260
Current Version 2.0.1.0
Last Updated 2022-02-17
Publish Date 2019-10-18
Rating 3.40/5 Total 5 Ratings
Developer Khaled Alam
Email [email protected]
Payment Type free
Extension Website https://codeforcesgreendot.com
Help Page URL http://codeforces.com/blog/entry/49868
Privacy Policy Page URL https://codeforcesgreendot.com/privacy
Supported Languages 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"
        ]
    }
}