Codeforces Notification

push notification for codeforces

Codeforces Notification là gì?

Codeforces Notification là một tiện ích mở rộng Chrome được phát triển bởi ganariya2525, và tính năng chính của nó là "push notification for codeforces".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Codeforces Notification

Tải xuống các tệp mở rộng Codeforces Notification dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Codeforces Notification Codeforces Notification
ID jglachhdagmpdpplklfanbooafbmkddn
URL Chính Thức https://chrome.google.com/webstore/detail/codeforces-notification/jglachhdagmpdpplklfanbooafbmkddn
Mô tả push notification for codeforces
Kích Thước Tệp 606 KB
Số Lần Cài Đặt 35
Phiên Bản Hiện Tại 1.0.0.0
Cập Nhật Lần Cuối 2018-12-30
Ngày Phát Hành 2018-12-30
Nhà Phát Triển ganariya2525
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}