Jupyter Notebook BG Changer

Jupyter Notebook BG Changer

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

Merlin
Additional files are visible only to premium users

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
}