2022/10/24 上午10:59:59
当前为
// ==UserScript==
// @name 补全a标签href属性
// @namespace Violentmonkey Scripts
// @match http://*
// @match https://*
// @grant none
// @version 1.1
// @author meazin
// @license MIT
// @description 2022/10/24 上午10:59:59
// ==/UserScript==
var aElements=document.getElementsByTagName('a')
for (const iterator of aElements) {
if(!iterator['href']){
iterator['href']='javascript:;';
}
}