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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
        ]
    }
}