Kattis Tracker

Automatically upload Kattis problem solutions to a GitHub repository of your choice and track your progress with this extension!

Kattis Trackerคืออะไร?

Kattis Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ahmed Siadomar และคุณลักษณะหลักของมันคือ "Automatically upload Kattis problem solutions to a GitHub repository of your choice and track your progress with this extension!"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Kattis Tracker

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

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

                        Do you find yourself solving countless Kattis problems and wishing there was an easy way to track your progress? Luckily, this extension is your solution!

By authorizing your GitHub account with this extension, any accepted solutions to any Kattis problems will automatically be uploaded to a GitHub repository of your choosing. Additionally, this extension will track your progress over time and provide some analytics on your problem solving! (There is also an option to disable GitHub uploading if you decide you only want the data tracking).

UPDATES:

June 3, 2022
- Bug fixes

June 7, 2022
- Bug fixes due to Kattis UI overhaul
- Changed uploading for only new submissions to problems instead of all

June 9, 2022
- Bug fixes
- QoL changes

June 14, 2022
- Bug fixes

June 18, 2022
- Bug fix for some problems that do not have a source

June 21, 2022
- Added an option see the chart and statistics pages without authorizing a GitHub account.

July 11, 2022
- Bug fixes due to slight Kattis UI update
- Implemented binary search to reduce upload times

August 30, 2022
- Bug fixes due to slight Kattis UI update (again)                    

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

ชื่อ Kattis Tracker Kattis Tracker
ID labgloilbabpmjphkmkihfamjmnmloaj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/kattis-tracker/labgloilbabpmjphkmkihfamjmnmloaj
คำอธิบาย Automatically upload Kattis problem solutions to a GitHub repository of your choice and track your progress with this extension!
ขนาดไฟล์ 2.37 MB
จำนวนการติดตั้ง 22
เวอร์ชันปัจจุบัน 0.2.2
อัปเดตครั้งล่าสุด 2022-08-31
วันที่เผยแพร่ 2022-06-01
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Ahmed Siadomar
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ahmedsiad/KattisTracker
URL หน้าช่วยเหลือ https://github.com/ahmedsiad/KattisTracker
URL หน้านโยบายความเป็นส่วนตัว https://www.privacypolicies.com/live/aaf4170a-f2ca-436a-9996-432e491502ca
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Kattis Tracker",
    "description": "Automatically upload Kattis problem solutions to a GitHub repository of your choice and track your progress with this extension!",
    "version": "0.2.2",
    "action": {
        "default_popup": "index.html",
        "default_title": "Open dashboard"
    },
    "icons": {
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/?code*"
            ],
            "js": [
                "auth.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/open.kattis.com\/submissions\/*"
            ],
            "js": [
                "kattis.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": {
        "extension_page": "script-src 'self' https:\/\/github.com\/login\/oauth\/authorize; object-src 'self'"
    }
}