Codeforces Notification
push notification for codeforces
What is Codeforces Notification?
Codeforces Notification is a Chrome extension developed by ganariya2525, and its main feature is "push notification for codeforces".
Extension Screenshots
Download Codeforces Notification Extension CRX File
Download Codeforces Notification extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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で答えを提出した時、結果のプッシュ通知を受け取ることが出来ます。
Extension Basic Information
Name | |
ID | jglachhdagmpdpplklfanbooafbmkddn |
Official URL | https://chrome.google.com/webstore/detail/codeforces-notification/jglachhdagmpdpplklfanbooafbmkddn |
Description | push notification for codeforces |
File Size | 606 KB |
Installation Count | 35 |
Current Version | 1.0.0.0 |
Last Updated | 2018-12-30 |
Publish Date | 2018-12-30 |
Developer | ganariya2525 |
Payment Type | free |
Supported Languages | 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" ] } |