ニコニコ大百科、繋がってる自動リンクを判別

繋がってる自動リンク(いわゆるシロナガスクジラ現象)をマウスオーバーしなくても分かるようにします。

// ==UserScript==
// @name         ニコニコ大百科、繋がってる自動リンクを判別
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  繋がってる自動リンク(いわゆるシロナガスクジラ現象)をマウスオーバーしなくても分かるようにします。
// @author       cbxm
// @match        https://dic.nicovideo.jp/*
// @grant        none
// @license MIT
// ==/UserScript==

(async function() {
    'use strict';
    const autos= document.getElementsByClassName("auto");
    for(let a of autos){
        if(a.nextSibling==null||a.nextSibling.className!="auto"){
         continue;
        }

        const span=document.createElement("span");
        a.insertAdjacentElement("beforebegin",span);

        span.appendChild(a);

        span.style.borderRight="1px solid";
        span.style.color="#00000";

    }
})();