Colab Notifier

Notifies you when longer running code cells are finished

Vad är Colab Notifier?

Colab Notifier är en Chrome-tillägg utvecklad av baran yildirim, och dess huvudfunktion är "Notifies you when longer running code cells are finished".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Colab Notifier-förlängningens CRX-fil

Ladda ner Colab Notifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Colab Notifier Colab Notifier
ID njppjhbkfdkokacgoifjbbkijgfpkjec
Officiell webbadress https://chromewebstore.google.com/detail/colab-notifier/njppjhbkfdkokacgoifjbbkijgfpkjec
Beskrivning Notifies you when longer running code cells are finished
Filstorlek 215 KB
Antal Installationer 830
Aktuell Version 1.2
Senast Uppdaterad 2020-04-08
Publiceringsdatum 2020-04-08
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare baran yildirim
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/naraB/colab-notifier
Hjälpsida URL https://github.com/naraB/colab-notifier
Stödda Språk 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"
    ]
}