Codeforces Notification
push notification for codeforces
Codeforces Notificationとは何ですか?
Codeforces Notificationはganariya2525によって開発されたChromeの拡張機能で、その主な機能は「push notification for codeforces」です。
拡張機能のスクリーンショット
Codeforces Notification拡張機能のCRXファイルをダウンロード
Codeforces Notification拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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で答えを提出した時、結果のプッシュ通知を受け取ることが出来ます。 拡張機能の基本情報
| 名前 | |
| ID | jglachhdagmpdpplklfanbooafbmkddn |
| 公式URL | https://chrome.google.com/webstore/detail/codeforces-notification/jglachhdagmpdpplklfanbooafbmkddn |
| 説明 | push notification for codeforces |
| ファイルサイズ | 606 KB |
| インストール数 | 35 |
| 現在のバージョン | 1.0.0.0 |
| 最終更新日 | 2018-12-30 |
| 公開日 | 2018-12-30 |
| 開発者 | ganariya2525 |
| 支払い方法 | free |
| 対応言語 | 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"
]
} | |