Codeforces Notification

push notification for codeforces

Apa itu Codeforces Notification?

Codeforces Notification adalah ekstensi Chrome yang dikembangkan oleh ganariya2525, dan fitur utamanya adalah "push notification for codeforces".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Codeforces Notification

Unduh file ekstensi Codeforces Notification dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        When you submit your answers on Codeforces, you can get notification which describes whether you have the correct answer or wrong answer, or so.

Codeforcesで答えを提出した時、結果のプッシュ通知を受け取ることが出来ます。                    

Informasi Dasar Ekstensi

Nama Codeforces Notification Codeforces Notification
ID jglachhdagmpdpplklfanbooafbmkddn
URL Resmi https://chrome.google.com/webstore/detail/codeforces-notification/jglachhdagmpdpplklfanbooafbmkddn
Deskripsi push notification for codeforces
Ukuran File 606 KB
Jumlah Instalasi 35
Versi Saat Ini 1.0.0.0
Terakhir Diperbarui 2018-12-30
Tanggal Publikasi 2018-12-30
Pengembang ganariya2525
Tipe Pembayaran free
Bahasa yang Didukung ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "push notification for codeforces",
    "version": "1.0.0.0",
    "name": "Codeforces Notification",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codeforces.com\/contest\/*\/my"
            ],
            "js": [
                "my_submission.bundle.js"
            ]
        }
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "alarms",
        "background",
        "notifications",
        "storage"
    ]
}