// 获取所有a标签
const links = document.querySelectorAll('a');
// 存储符合条件的href属性
const hrefs = [];
// 遍历所有a标签
links.forEach(link => {
// 检查href属性是否包含/s/
if (link.href.includes('/s/')) {
hrefs.push(link.href);
}
});
// 将结果复制到剪贴板
navigator.clipboard.writeText(hrefs.join('\n')).then(() => {
console.log('复制成功');
}).catch(err => {
console.error('复制失败: ', err);
});
console.log(hrefs.join('\n'))