Chrome debug tool が開かれたかどうかを確認する
2017年10月31日
以下参考リンク
https://stackoverflow.com/questions/7798748/find-out-whether-chrome-console-is-open
function isInspectOpen()
{
console.profile();
console.profileEnd();
if (console.clear) console.clear();
return console.profiles.length > 0;
}
Comments are closed.