UUID / Permalink for quick copy/past in Panel

Hej everybody!
We are still relying on the classic kirby text for vast amounts at one of our sites. We recently upgraded to 3.9 and populated the UUIDs for every page.
While editing text it would be super handy to somehow access the UUID of a page right out of the panel itself. Yes, I can add a text field for the UUID. But this is editable and an user could unadvertly change or delete the field. If I disable the field, one can’t select it anymore.

Is there any built-in thing I can use to access the UUID from within the panel in a write-protected way? Bonusfeature would be if the “protocol” (page:// or file://) is prepended to the string.

Thanks!

I added the uuid like this to my pages and files.
Would this be sufficient?

permalink:
  type: info
  label: Permalink
  text: "{{page.permalink}}"
permalink:
  type: info
  label: Permalink
  text: "{{file.permalink}}"
1 Like

This is clever! I have not thought about this - thanks!