Codeforces Notification

push notification for codeforces

什麼是Codeforces Notification?

Codeforces Notification是由ganariya2525開發的Chrome擴展程式,該擴展的主要功能是“push notification for codeforces”。

擴展截圖

screenshot

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

擴展基本資訊

名稱 Codeforces Notification Codeforces Notification
ID jglachhdagmpdpplklfanbooafbmkddn
官方網址 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"
    ]
}