Codeforces Notification

push notification for codeforces

Cos'è Codeforces Notification?

Codeforces Notification è un'estensione di Chrome sviluppata da ganariya2525, e la sua funzione principale è "push notification for codeforces".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Codeforces Notification

Scarica i file di estensione Codeforces Notification in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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で答えを提出した時、結果のプッシュ通知を受け取ることが出来ます。                    

Informazioni di Base sull'Estensione

Nome Codeforces Notification Codeforces Notification
ID jglachhdagmpdpplklfanbooafbmkddn
URL Ufficiale https://chrome.google.com/webstore/detail/codeforces-notification/jglachhdagmpdpplklfanbooafbmkddn
Descrizione push notification for codeforces
Dimensione del File 606 KB
Conteggio Installazioni 35
Versione Corrente 1.0.0.0
Ultimo Aggiornamento 2018-12-30
Data di Pubblicazione 2018-12-30
Sviluppatore ganariya2525
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}