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
官方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"
    ]
}