Jupyter Notifier

Notifies you when code cells terminate.

ما هو Jupyter Notifier؟

Jupyter Notifier هو إضافة Chrome تم تطويرها بواسطة baran yildirim، والميزة الرئيسية لها هي "Notifies you when code cells terminate.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Jupyter Notifier

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

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

                        On every Jupyter Notebook environment, Jupyter Notifier notifies you with a sound, a message, or both when code cells terminate. Jupyter Notifier injects a bell icon into your notebook, which allows you to select specific cells for notification.

With Jupyter Notifier, you won't be repeatedly checking whether your cell has terminated.                    

معلومات أساسية عن التمديد

الاسم Jupyter Notifier Jupyter Notifier
ID chjgkagmoifencbeboghhaefjknfogib
عنوان URL الرسمي https://chromewebstore.google.com/detail/jupyter-notifier/chjgkagmoifencbeboghhaefjknfogib
الوصف Notifies you when code cells terminate.
حجم الملف 48.06 KB
عدد التثبيتات 212
النسخة الحالية 0.0.1
آخر تحديث 2020-04-13
تاريخ النشر 2020-04-12
المطور baran yildirim
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/naraB/jupyter-notifier
عنوان صفحة المساعدة https://github.com/naraB/jupyter-notifier
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jupyter Notifier",
    "description": "Notifies you when code cells terminate.",
    "version": "0.0.1",
    "permissions": [
        "storage",
        "notifications"
    ],
    "web_accessible_resources": [
        "assets\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": ".\/popup\/popup.html",
        "default_title": "jupyter notifier"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": ".\/assets\/icons\/bell-48px.png",
        "48": ".\/assets\/icons\/bell-48px.png",
        "128": ".\/assets\/icons\/bell-128px.png"
    }
}