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."입니다.

확장 프로그램 스크린샷

screenshot

Jupyter Notebook BG Changer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
}