Jupyter Notebook BG Changer

This extension changes the background of jupyter notebook according to the port.

Co to jest Jupyter Notebook BG Changer?

Jupyter Notebook BG Changer to rozszerzenie Chrome opracowane przez shiba6v, a jego główną funkcją jest „This extension changes the background of jupyter notebook according to the port.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Jupyter Notebook BG Changer

Pobierz pliki rozszerzeń Jupyter Notebook BG Changer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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に繋ぐときに,どのサーバーに繋いでいるかがわかりやすく,操作ミスを防ぐことができます.                    

Podstawowe informacje o rozszerzeniu

Nazwa Jupyter Notebook BG Changer Jupyter Notebook BG Changer
ID obhdjhcagohonfcakpdfoieglgkeohld
Oficjalny URL https://chromewebstore.google.com/detail/jupyter-notebook-bg-chang/obhdjhcagohonfcakpdfoieglgkeohld
Opis This extension changes the background of jupyter notebook according to the port.
Rozmiar pliku 3.63 KB
Liczba instalacji 67
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2020-09-30
Data Publikacji 2020-09-30
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper shiba6v
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}