Codeforces Notification

push notification for codeforces

Vad är Codeforces Notification?

Codeforces Notification är en Chrome-tillägg utvecklad av ganariya2525, och dess huvudfunktion är "push notification for codeforces".

Tilläggsskärmbilder

screenshot

Ladda ner Codeforces Notification-förlängningens CRX-fil

Ladda ner Codeforces Notification-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Codeforces Notification Codeforces Notification
ID jglachhdagmpdpplklfanbooafbmkddn
Officiell webbadress https://chrome.google.com/webstore/detail/codeforces-notification/jglachhdagmpdpplklfanbooafbmkddn
Beskrivning push notification for codeforces
Filstorlek 606 KB
Antal Installationer 35
Aktuell Version 1.0.0.0
Senast Uppdaterad 2018-12-30
Publiceringsdatum 2018-12-30
Utvecklare ganariya2525
Betalningssätt free
Stödda Språk 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"
    ]
}