Codeforces Notification

push notification for codeforces

Was ist Codeforces Notification?

Codeforces Notification ist eine Chrome-Erweiterung, die von ganariya2525 entwickelt wurde, und ihr Hauptmerkmal ist "push notification for codeforces".

Erweiterungsscreenshots

screenshot

Codeforces Notification-Erweiterungs-CRX-Datei herunterladen

Laden Sie Codeforces Notification-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Codeforces Notification Codeforces Notification
ID jglachhdagmpdpplklfanbooafbmkddn
Offizielle URL https://chrome.google.com/webstore/detail/codeforces-notification/jglachhdagmpdpplklfanbooafbmkddn
Beschreibung push notification for codeforces
Dateigröße 606 KB
Installationsanzahl 35
Aktuelle Version 1.0.0.0
Letztes Update 2018-12-30
Veröffentlichungsdatum 2018-12-30
Entwickler ganariya2525
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}