Colab Notifier

Notifies you when longer running code cells are finished

Hvad er Colab Notifier?

Colab Notifier er en Chrome-udvidelse udviklet af baran yildirim, og dens hovedfunktion er "Notifies you when longer running code cells are finished".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Colab Notifier-udvidelses-CRX-fil

Download Colab Notifier-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Colab Notifier Colab Notifier
ID njppjhbkfdkokacgoifjbbkijgfpkjec
Officiel URL https://chromewebstore.google.com/detail/colab-notifier/njppjhbkfdkokacgoifjbbkijgfpkjec
Beskrivelse Notifies you when longer running code cells are finished
Filstørrelse 215 KB
Antal Installationer 830
Nuværende Version 1.2
Senest Opdateret 2020-04-08
Udgivelsesdato 2020-04-08
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler baran yildirim
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/naraB/colab-notifier
Hjælpeside-URL https://github.com/naraB/colab-notifier
Understøttede Sprog 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"
    ]
}