// ==UserScript== // @name 爱达杂货铺 // @namespace https://github.com/RUInalan/AidaGroceryStore // @version 8.8.8 // @author 倚楼听风雨 // @description 让爱达杂货铺回归本质,直接跳转到目标网站 // @match *://adzhp.net/* // ==/UserScript== (function () { // 获取页面上所有的 标签 const links = document.getElementsByTagName('a'); // 遍历每个链接,匹配与正则表达式相符的链接 for (let i = 0; i < links.length; i++) { const link = links[i]; const pattern = //; if (pattern.test(link.outerHTML)) { //开始修改 link.href = link.dataset.url; } } })();