Webページ内のidのinnerHTMLを新しいタブで開くためのブックマークレット

  Webページの一部(例:id="kashi_area")をブラウザの新しいタブで表示するためのブックマークレット。表示しているWebページではテキストを取得できず、その所得したいテキスト部分のidが分かっている場合に利用する。

 javascript:(function(){
    const element = document.getElementById("kashi_area");
    if (element) {
        const newWindow = window.open();
        newWindow.document.write(element.innerHTML);
        newWindow.document.close();
    } else {
        alert("要素が見つかりません");
    }
})();

コメント