Colab Notifier

Notifies you when longer running code cells are finished

Apa itu Colab Notifier?

Colab Notifier adalah ekstensi Chrome yang dikembangkan oleh baran yildirim, dan fitur utamanya adalah "Notifies you when longer running code cells are finished".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Colab Notifier

Unduh file ekstensi Colab Notifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Colab Notifier Colab Notifier
ID njppjhbkfdkokacgoifjbbkijgfpkjec
URL Resmi https://chromewebstore.google.com/detail/colab-notifier/njppjhbkfdkokacgoifjbbkijgfpkjec
Deskripsi Notifies you when longer running code cells are finished
Ukuran File 215 KB
Jumlah Instalasi 830
Versi Saat Ini 1.2
Terakhir Diperbarui 2020-04-08
Tanggal Publikasi 2020-04-08
Penilaian 5.00/5 Total 1 Penilaian
Pengembang baran yildirim
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/naraB/colab-notifier
URL Halaman Bantuan https://github.com/naraB/colab-notifier
Bahasa yang Didukung 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"
    ]
}