Colab Notifier

Notifies you when longer running code cells are finished

Was ist Colab Notifier?

Colab Notifier ist eine Chrome-Erweiterung, die von baran yildirim entwickelt wurde, und ihr Hauptmerkmal ist "Notifies you when longer running code cells are finished".

Erweiterungsscreenshots

screenshot
screenshot

Colab Notifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie Colab Notifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Colab Notifier Colab Notifier
ID njppjhbkfdkokacgoifjbbkijgfpkjec
Offizielle URL https://chromewebstore.google.com/detail/colab-notifier/njppjhbkfdkokacgoifjbbkijgfpkjec
Beschreibung Notifies you when longer running code cells are finished
Dateigröße 215 KB
Installationsanzahl 830
Aktuelle Version 1.2
Letztes Update 2020-04-08
Veröffentlichungsdatum 2020-04-08
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler baran yildirim
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/naraB/colab-notifier
Hilfeseite URL https://github.com/naraB/colab-notifier
Unterstützte Sprachen 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"
    ]
}