<!-- を <!-- にするだけ。
/* * @title HTMLソース中のコメントを表示 * @description <!-- を <!-- にするだけ。 * @include http://* * @license MIT License */ (function(){ document.body.innerHTML=document.body.innerHTML.replace(/<!--/g,'<!--'); })();