Jupyter Notebook BG Changer

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

¿Qué es Jupyter Notebook BG Changer?

Jupyter Notebook BG Changer es una extensión de Chrome desarrollada por shiba6v, y su función principal es "This extension changes the background of jupyter notebook according to the port.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Jupyter Notebook BG Changer

Descarga archivos de extensión Jupyter Notebook BG Changer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Jupyter Notebook BG Changer Jupyter Notebook BG Changer
ID obhdjhcagohonfcakpdfoieglgkeohld
URL Oficial https://chromewebstore.google.com/detail/jupyter-notebook-bg-chang/obhdjhcagohonfcakpdfoieglgkeohld
Descripción This extension changes the background of jupyter notebook according to the port.
Tamaño del Archivo 3.63 KB
Cantidad de Instalaciones 67
Versión Actual 0.1
Última Actualización 2020-09-30
Fecha de Publicación 2020-09-30
Calificación 4.00/5 Total de 1 Calificaciones
Desarrollador shiba6v
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
}