Looking in the Inspector, you find that each link for an article on Google Scholar has the class "gsc_a_at".
Go to ChatGPT or another AI and ask it the following:
in JS, find all links with the class gsc_a_at and return them as a table in the console
This provides the following command, which you can then run in the Inspector Console:
const links = document.querySelectorAll(".gsc_a_at");
const linkData = [];
links.forEach((link) => {
const href = link.href;
const text = link.textContent;
linkData.push({ href, text });
});
console.table(linkData);
This provides the following table in the Inspector Console:

This table can then be copy/pasted to Microsoft Word.