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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Khaled Alam และคุณลักษณะหลักของมันคือ "Shows recent blog actions on codeforces.com platform and check your friends list status and submissions."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Codeforces Green Dot

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
        ]
    }
}