I managed to open up the code and create a version that would be able to teleport you to any planet mod,
Unfortunately this isn't optimal as most planet mods expect the research for said planet to be Done, which means for most they become effectively aquillo with zero reason to be there, as i cant yet find a good way to extend the force research to modded planets without individual compatibilities for each one.
I can attach the code here. it just replaces the previous hardcoded array. Its a nice solution to me. but theres not a good equivalent for the technology as far as i know yet.
local planets = {}--Declare planets, leave empty
--Populates array with every planet,
for key, value in pairs(game.planets) do
planets[#planets + 1] = { name = key }
end