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.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

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 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
Eメール [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"
        ]
    }
}