Is it dangerous to publically show my chrome extension ID?

So i have built an chrome extension with manifest v3. Since it adds some images into the DOM, i wrote a line similar to this:

let imageSource = "chrome-extension://{id}/ExtensionImages/image.png";

I’m thinking about posting the extension on GitHub, but i don’t know if showing the extension id publically on the source code could generate security issues for my extension or even for my computer.

I understand that there are probably better ways to retrieve an image with manifest without using the id, but even if i were to repace this line, anyone could still see my commit history and get the extension id.