Jupyter Notebook BG Changer
This extension changes the background of jupyter notebook according to the port.
Vad är Jupyter Notebook BG Changer?
Jupyter Notebook BG Changer är en Chrome-tillägg utvecklad av shiba6v, och dess huvudfunktion är "This extension changes the background of jupyter notebook according to the port.".
Tilläggsskärmbilder
Ladda ner Jupyter Notebook BG Changer-förlängningens CRX-fil
Ladda ner Jupyter Notebook BG Changer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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に繋ぐときに,どのサーバーに繋いでいるかがわかりやすく,操作ミスを防ぐことができます.
Grundläggande Information om Tillägg
Namn | Jupyter Notebook BG Changer |
ID | obhdjhcagohonfcakpdfoieglgkeohld |
Officiell webbadress | https://chromewebstore.google.com/detail/jupyter-notebook-bg-chang/obhdjhcagohonfcakpdfoieglgkeohld |
Beskrivning | This extension changes the background of jupyter notebook according to the port. |
Filstorlek | 3.63 KB |
Antal Installationer | 67 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2020-09-30 |
Publiceringsdatum | 2020-09-30 |
Betyg | 4.00/5 Totalt 1 Betyg |
Utvecklare | shiba6v |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } |