Colab Notifier

Notifies you when longer running code cells are finished

Qu'est-ce que Colab Notifier ?

Colab Notifier est une extension Chrome développée par baran yildirim, et sa fonction principale est "Notifies you when longer running code cells are finished".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Colab Notifier

Téléchargez les fichiers d'extension Colab Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Colab Notifier Colab Notifier
ID njppjhbkfdkokacgoifjbbkijgfpkjec
URL Officiel https://chromewebstore.google.com/detail/colab-notifier/njppjhbkfdkokacgoifjbbkijgfpkjec
Description Notifies you when longer running code cells are finished
Taille du Fichier 215 KB
Nombre d'Installations 830
Version Actuelle 1.2
Dernière Mise à Jour 2020-04-08
Date de Publication 2020-04-08
Évaluation 5.00/5 Total 1 Évaluations
Développeur baran yildirim
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/naraB/colab-notifier
URL de la Page d'Aide https://github.com/naraB/colab-notifier
Langues Prises en Charge 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"
    ]
}