Colab Alive
Keep your Colab tabs alive with this nifty extension!
什么是Colab Alive?
Colab Alive是由Rajtilak Indrajit开发的Chrome扩展程序,该扩展的主要功能是“Keep your Colab tabs alive with this nifty extension!”。
扩展截图
下载Colab Alive扩展crx文件
下载Colab Alive扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
# Colab Alive - a chrome extension that keeps Colab notebooks alive.
Updated to work with the latest Colab as of March 2021. Thanks to https://github.com/sobuj53 for the update!
How it works — a few lines of JS code are injected if you have a colab tab open and running even if you navigate away from the page.
Code credit: https://medium.com/@shivamrawat_756/how-to-prevent-google-colab-from-disconnecting-717b88a128c0
Rate the extension on Chrome webstore if you like it :) 扩展基本信息
| 名称 | |
| ID | eookkckfbbgnhdgcbfbicoahejkdoele |
| 官方URL | https://chromewebstore.google.com/detail/colab-alive/eookkckfbbgnhdgcbfbicoahejkdoele |
| 简介 | Keep your Colab tabs alive with this nifty extension! |
| 文件大小 | 83.04 KB |
| 安装次数 | 9,014 |
| 当前版本 | 1.3.1 |
| 更新时间 | 2021-03-31 |
| 上架时间 | 2020-06-12 |
| 评分 | 3.64/5 共11次评分 |
| 开发者 | Rajtilak Indrajit |
| 电子邮箱 | [email protected] |
| 付费类型 | in_app |
| 扩展官网 | https://github.com/rtindru/colabAlive |
| 帮助页面URL | https://github.com/rtindru/colabAlive |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Colab Alive",
"version": "1.3.1",
"manifest_version": 2,
"description": "Keep your Colab tabs alive with this nifty extension!",
"homepage_url": "https:\/\/github.com\/rtindru",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": []
},
"browser_action": {
"default_icon": "icons\/icon48.png",
"default_popup": "html\/popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/colab.research.google.com\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |