Script that corrects the bug that the explanation text cannot be read due to Javascript execution restriction
目前為
// ==UserScript==
// @name AdBlockblockblock4fe
// @namespace Violentmonkey Scripts
// @match https://www.fe-siken.com/fekakomon.php
// @grant none
// @description Script that corrects the bug that the explanation text cannot be read due to Javascript execution restriction
// @version 0.0.1.20191017015355
// ==/UserScript==
document.querySelector(".selectBtn").addEventListener(
"click",
function(){
document.querySelector("div#kaisetsu .ansbg").setAttribute("style","");
}
);