Inspector v2 umd?

At inspector v2 docs at
https://doc.babylonjs.com/toolsAndResources/inspectorv2/
there is a link to a playground example.
https://playground.babylonjs.com/#6RBWKC

I went to that url and downloaded the example.
When I run that on my localhost I get following error in console

Uncaught ReferenceError: INSPECTOR is not defined

Is the following link in “index.html” wrong

src=“https://cdn.babylonjs.com/inspector/babylon.inspector.bundle.js

Is this the inspector v1?

Any instructions on how to load v2 umd version ?

Use JSDelivr

<script src="
https://cdn.jsdelivr.net/npm/babylonjs-inspector@9.9.1/babylon.inspector-v2.bundle.min.js
"></script>

Thanks
I also found v2 is also available at
https://cdn.babylonjs.com/inspector/babylon.inspector-v2.bundle.js
The playground should be updated to reflect this?

Unfortunately even after that it failed.
I had a simple scene, light, camera and a cube and following 2 depenendencies
“babylonjs”: “^8.56.2”
“babylonjs-inspector”: “^8.56.2”

It failed with error.

Uncaught TypeError: Cannot read properties of undefined (reading ‘NONE’)
at 2023 (gltfLoaderOptionsTool.tsx:15:58)

Anyway after much trial and error I found you had to add few more dependencies.
The following and in this order

babylonjs-loaders
babylonjs-gui
babylonjs-materials
babylonjs-serializers

Maybe the docs should be updated to say you need these dependencies for UMD to work.

As an aside I found the playground download to be weird.
Had code encoded with base64.
Isn’t this meant for educational purpose?
New comers would have a tough time figuring this out
Why would anybody download ?