Colab Notifier
Notifies you when longer running code cells are finished
What is Colab Notifier?
Colab Notifier is a Chrome extension developed by baran yildirim, and its main feature is "Notifies you when longer running code cells are finished".
Extension Screenshots
Download Colab Notifier Extension CRX File
Download Colab Notifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Are you training models on Google Colaboratory and you would like to get notification when your cells finished running? Use colab notifier!
Extension Basic Information
Name | Colab Notifier |
ID | njppjhbkfdkokacgoifjbbkijgfpkjec |
Official URL | https://chromewebstore.google.com/detail/colab-notifier/njppjhbkfdkokacgoifjbbkijgfpkjec |
Description | Notifies you when longer running code cells are finished |
File Size | 215 KB |
Installation Count | 830 |
Current Version | 1.2 |
Last Updated | 2020-04-08 |
Publish Date | 2020-04-08 |
Rating | 5.00/5 Total 1 Ratings |
Developer | baran yildirim |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/naraB/colab-notifier |
Help Page URL | https://github.com/naraB/colab-notifier |
Supported Languages | 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" ] } |