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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
Διεύθυνση URL της Σελίδας Βοήθειας 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"
    }
}