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」です。
拡張機能のスクリーンショット
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 |
ID | njppjhbkfdkokacgoifjbbkijgfpkjec |
公式URL | 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 |
Eメール | [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" ] } |