Colab Notifier

Notifies you when longer running code cells are finished

Wat is Colab Notifier?

Colab Notifier is een Chrome-extensie ontwikkeld door baran yildirim, en de belangrijkste functie is "Notifies you when longer running code cells are finished".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Colab Notifier

Download Colab Notifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Colab Notifier Colab Notifier
ID njppjhbkfdkokacgoifjbbkijgfpkjec
Officiële URL https://chromewebstore.google.com/detail/colab-notifier/njppjhbkfdkokacgoifjbbkijgfpkjec
Beschrijving Notifies you when longer running code cells are finished
Bestandsgrootte 215 KB
Aantal Installaties 830
Huidige Versie 1.2
Laatst Bijgewerkt 2020-04-08
Publicatiedatum 2020-04-08
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar baran yildirim
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/naraB/colab-notifier
Help Pagina-URL https://github.com/naraB/colab-notifier
Ondersteunde Talen 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"
    ]
}