Colab Notifier

Notifies you when longer running code cells are finished

Cos'è Colab Notifier?

Colab Notifier è un'estensione di Chrome sviluppata da baran yildirim, e la sua funzione principale è "Notifies you when longer running code cells are finished".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Colab Notifier

Scarica i file di estensione Colab Notifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Are you training models on Google Colaboratory and you would like to get notification when your cells finished running? Use colab notifier!                    

Informazioni di Base sull'Estensione

Nome Colab Notifier Colab Notifier
ID njppjhbkfdkokacgoifjbbkijgfpkjec
URL Ufficiale https://chromewebstore.google.com/detail/colab-notifier/njppjhbkfdkokacgoifjbbkijgfpkjec
Descrizione Notifies you when longer running code cells are finished
Dimensione del File 215 KB
Conteggio Installazioni 830
Versione Corrente 1.2
Ultimo Aggiornamento 2020-04-08
Data di Pubblicazione 2020-04-08
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore baran yildirim
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/naraB/colab-notifier
URL della Pagina di Aiuto https://github.com/naraB/colab-notifier
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Colab Notifier",
    "description": "Notifies you when longer running code cells are finished",
    "version": "1.2",
    "permissions": [
        "storage",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": ".\/popup\/popup.html",
        "default_title": "colab notifier"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": ".\/assets\/icons\/icon-16px.png",
        "48": ".\/assets\/icons\/icon-48px.png",
        "128": ".\/assets\/icons\/icon-128px.png"
    },
    "web_accessible_resources": [
        ".\/assets\/icons\/timer-24px.svg"
    ]
}