Codeforces Notification

push notification for codeforces

Qu'est-ce que Codeforces Notification ?

Codeforces Notification est une extension Chrome développée par ganariya2525, et sa fonction principale est "push notification for codeforces".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Codeforces Notification

Téléchargez les fichiers d'extension Codeforces Notification au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Codeforces Notification Codeforces Notification
ID jglachhdagmpdpplklfanbooafbmkddn
URL Officiel https://chrome.google.com/webstore/detail/codeforces-notification/jglachhdagmpdpplklfanbooafbmkddn
Description push notification for codeforces
Taille du Fichier 606 KB
Nombre d'Installations 35
Version Actuelle 1.0.0.0
Dernière Mise à Jour 2018-12-30
Date de Publication 2018-12-30
Développeur ganariya2525
Type de Paiement free
Langues Prises en Charge 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"
    ]
}