Sharing Options not available on Android Tablet

I created a table out of a program and want to print it out.
for that, a new Page will be created by javascript with the table.
I don’t know why, but there are no sharing options for this page. I need to print that out.
On My mac in chrome it works.
Do you have any suggestions?

Here is the javascript code for that:

var divToPrint = document.getElementById("printTable");
newWin = window.open("");
newWin.document.write("<html><body><div id='table'></div></body></html>");
const table = newWin.document.getElementById("table");
table.appendChild(divToPrint);

Thank you very much!
enter image description here