Jupyter Notebook BG Changer
This extension changes the background of jupyter notebook according to the port.
Jupyter Notebook BG Changer là gì?
Jupyter Notebook BG Changer là một tiện ích mở rộng Chrome được phát triển bởi shiba6v, và tính năng chính của nó là "This extension changes the background of jupyter notebook according to the port.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Jupyter Notebook BG Changer
Tải xuống các tệp mở rộng Jupyter Notebook BG Changer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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に繋ぐときに,どのサーバーに繋いでいるかがわかりやすく,操作ミスを防ぐことができます.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Jupyter Notebook BG Changer |
ID | obhdjhcagohonfcakpdfoieglgkeohld |
URL Chính Thức | https://chromewebstore.google.com/detail/jupyter-notebook-bg-chang/obhdjhcagohonfcakpdfoieglgkeohld |
Mô tả | This extension changes the background of jupyter notebook according to the port. |
Kích Thước Tệp | 3.63 KB |
Số Lần Cài Đặt | 67 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2020-09-30 |
Ngày Phát Hành | 2020-09-30 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | shiba6v |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |