Codeforces Notification
push notification for codeforces
Wat is Codeforces Notification?
Codeforces Notification is een Chrome-extensie ontwikkeld door ganariya2525, en de belangrijkste functie is "push notification for codeforces".
Extensie Screenshots
Download het CRX-bestand van de extensie Codeforces Notification
Download Codeforces Notification-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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で答えを提出した時、結果のプッシュ通知を受け取ることが出来ます。
Basisinformatie over de Extensie
Naam | |
ID | jglachhdagmpdpplklfanbooafbmkddn |
Officiële URL | https://chrome.google.com/webstore/detail/codeforces-notification/jglachhdagmpdpplklfanbooafbmkddn |
Beschrijving | push notification for codeforces |
Bestandsgrootte | 606 KB |
Aantal Installaties | 35 |
Huidige Versie | 1.0.0.0 |
Laatst Bijgewerkt | 2018-12-30 |
Publicatiedatum | 2018-12-30 |
Ontwikkelaar | ganariya2525 |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |