阿部寛のホームページRTA

阿部寛のホームページをクリックする前から開きます(カーソルがリンクに触れると開きます)。

// ==UserScript==
// @name         阿部寛のホームページRTA
// @namespace    https://x.com/mersnn621
// @version      0.1
// @description  阿部寛のホームページをクリックする前から開きます(カーソルがリンクに触れると開きます)。
// @author       mersnn621
// @grant        none
// @match        http*://*/*
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    const abehiroshi = document.querySelectorAll("a[href*='://abehiroshi.la.coocan.jp']");
    for(let i = 0; i < abehiroshi.length; i++){
      abehiroshi[i].addEventListener('mouseover',function(){
        location.href = abehiroshi[i].getAttribute('href');
    });
    }
})();