Colab Notifier

Notifies you when longer running code cells are finished

什麼是Colab Notifier?

Colab Notifier是由baran yildirim開發的Chrome擴展程式,該擴展的主要功能是“Notifies you when longer running code cells are finished”。

擴展截圖

screenshot
screenshot

下載Colab Notifier擴展crx文件

下載Colab Notifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Colab Notifier Colab Notifier
ID njppjhbkfdkokacgoifjbbkijgfpkjec
官方網址 https://chromewebstore.google.com/detail/colab-notifier/njppjhbkfdkokacgoifjbbkijgfpkjec
簡介 Notifies you when longer running code cells are finished
檔案大小 215 KB
安裝次數 830
目前版本 1.2
更新時間 2020-04-08
上架時間 2020-04-08
評分 5.00/5 共 1 次評分
開發者 baran yildirim
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/naraB/colab-notifier
說明頁面URL https://github.com/naraB/colab-notifier
支援的語言 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"
    ]
}