如何一次性打开网页 table 上所有基于文件名的链接并在新标签页中打开

how to open all the links based filename on webpage table in one go and open in new tab

必须自动执行此手动工作?任何扩展或查询或脚本? 任何想法如何去做

  1. 打开文件名为 anyfile.xlsx
  2. 的页面
  3. 右键单击提交 link 和 select open in new tab
  4. 将URL中的&ID=9012389替换为&thevalue=g并提交
  5. 重复第 2 步进行下一次提交 link

按 F12 打开 javascript 控制台并粘贴

[...document.querySelectorAll('a')]
    .filter(a => a.href.match(/Submit/))
    .forEach(a => window.open(a.href.replace('&ID=9012389','&thevalue=g'))))

如果控制台要求确认,则允许粘贴。