URL.canParseがnullになってurlクリックできなくなるので
目前為
// ==UserScript==
// @name URL.canParse dummy
// @namespace http://tampermonkey.net/
// @version 0.0.1
// @description URL.canParseがnullになってurlクリックできなくなるので
// @author You
// @match https://www.nicovideo.jp/watch/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=nicovideo.jp
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
alert("test!");
if (!URL.canParse) {
console.log("URL.canParse is null");
URL.canParse = (url) => {
console.log("URL.canParse : $(url)");
}
}
// Your code here...
})();