plugin.json 662 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "title": "Launcher",
  3. "description": "Launcher settings.",
  4. "jupyter.lab.menus": {
  5. "main": [
  6. {
  7. "id": "jp-mainmenu-file",
  8. "items": [
  9. {
  10. "command": "launcher:create",
  11. "rank": 0.99
  12. }
  13. ]
  14. }
  15. ]
  16. },
  17. "jupyter.lab.shortcuts": [
  18. {
  19. "command": "launcher:create",
  20. "keys": ["Accel Shift L"],
  21. "selector": "body"
  22. }
  23. ],
  24. "jupyter.lab.toolbars": {
  25. "FileBrowser": [
  26. {
  27. "name": "new-launcher",
  28. "command": "launcher:create",
  29. "rank": 1
  30. }
  31. ]
  32. },
  33. "properties": {},
  34. "additionalProperties": false,
  35. "type": "object"
  36. }