Codeforces Notification

push notification for codeforces

ما هو Codeforces Notification؟

Codeforces Notification هو إضافة Chrome تم تطويرها بواسطة ganariya2525، والميزة الرئيسية لها هي "push notification for codeforces".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Codeforces Notification

قم بتنزيل ملفات الامتداد Codeforces Notification بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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