Codeforce submission status link

Add submission status link to the problem page

Codeforce submission status linkคืออะไร?

Codeforce submission status link เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fatminmin.com และคุณลักษณะหลักของมันคือ "Add submission status link to the problem page"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Codeforce submission status link

ดาวน์โหลดไฟล์ส่วนขยาย Codeforce submission status link ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds a link to the problem submission page at the end of sidebar for Codeforces.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Codeforce submission status link Codeforce submission status link
ID pckjjhfnnmonhkfekgnbbdafndfjpjap
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/codeforce-submission-stat/pckjjhfnnmonhkfekgnbbdafndfjpjap
คำอธิบาย Add submission status link to the problem page
ขนาดไฟล์ 40.68 KB
จำนวนการติดตั้ง 637
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2016-08-29
วันที่เผยแพร่ 2016-08-29
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://fatminmin.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/chiehmin/CodeforcesExtension
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Codeforce submission status link",
    "description": "Add submission status link to the problem page",
    "version": "1.0.4",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.codeforces.com\/problemset\/problem\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "problemset.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "http:\/\/*.codeforces.com\/group\/*\/contest\/*\/problem\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "group_problem.js"
            ],
            "run_at": "document_idle"
        }
    ]
}