Jupyter Notebook BG Changer
This extension changes the background of jupyter notebook according to the port.
什么是Jupyter Notebook BG Changer?
Jupyter Notebook BG Changer是由shiba6v开发的Chrome扩展程序,该扩展的主要功能是“This extension changes the background of jupyter notebook according to the port.”。
扩展截图
下载Jupyter Notebook BG Changer扩展crx文件
下载Jupyter Notebook BG Changer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension switches background color of Jupyter Notebook according to the port number. When connecting to multiple servers, you can know which server you are connecting to and prevent operation errors. Jupyter Notebookのポートに応じて,Jupyter Notebookの背景色を切り替えます.複数のサーバーのNotebookに繋ぐときに,どのサーバーに繋いでいるかがわかりやすく,操作ミスを防ぐことができます.
扩展基本信息
名称 | Jupyter Notebook BG Changer |
ID | obhdjhcagohonfcakpdfoieglgkeohld |
官方URL | https://chromewebstore.google.com/detail/jupyter-notebook-bg-chang/obhdjhcagohonfcakpdfoieglgkeohld |
简介 | This extension changes the background of jupyter notebook according to the port. |
文件大小 | 3.63 KB |
安装次数 | 67 |
当前版本 | 0.1 |
更新时间 | 2020-09-30 |
上架时间 | 2020-09-30 |
评分 | 4.00/5 共1次评分 |
开发者 | shiba6v |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jupyter Notebook BG Changer", "version": "0.1", "description": "This extension changes the background of jupyter notebook according to the port.", "homepage_url": "https:\/\/github.com\/shiba6v\/chrome_ext_jupyter_bg", "content_scripts": [ { "js": [ "js\/main.js" ], "matches": [ "http:\/\/localhost\/notebooks\/*", "http:\/\/localhost\/edit\/*", "http:\/\/0.0.0.0\/notebooks\/*", "http:\/\/0.0.0.0\/edit\/*", "http:\/\/127.0.0.1\/notebooks\/*", "http:\/\/127.0.0.1\/edit\/*", "https:\/\/localhost\/notebooks\/", "https:\/\/localhost\/edit\/", "https:\/\/0.0.0.0\/notebooks\/*", "https:\/\/0.0.0.0\/edit\/*", "https:\/\/127.0.0.1\/notebooks\/*", "https:\/\/127.0.0.1\/edit\/*" ] } ], "permissions": [ "http:\/\/localhost\/notebooks\/*", "http:\/\/localhost\/edit\/*", "http:\/\/0.0.0.0\/notebooks\/*", "http:\/\/0.0.0.0\/edit\/*", "http:\/\/127.0.0.1\/notebooks\/*", "http:\/\/127.0.0.1\/edit\/*", "https:\/\/localhost\/notebooks\/", "https:\/\/localhost\/edit\/", "https:\/\/0.0.0.0\/notebooks\/*", "https:\/\/0.0.0.0\/edit\/*", "https:\/\/127.0.0.1\/notebooks\/*", "https:\/\/127.0.0.1\/edit\/*" ], "manifest_version": 2 } |