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 |
电子邮箱 | [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" ] } |