Firefox: target="_blank" なリンクの挙動が変更

・「Firefox 79」からtarget=“_blank”なリンクの挙動が変更、より安全な仕様に - 窓の杜より

“target”属性に“_blank”が指定されている“A”要素および“AREA”要素の扱いが変更され、“rel”属性が設定されていない場合、暗黙的に“noopener”が適用されるようになる。


関連:
・タイトルを作るブックマークレット

javascript:(function(){
  e = document.createElement('textarea');
  e.textContent = '<a href="' + document.URL + '" target="_blank">' + '・' + document.title + '</a>';
  document.body.appendChild(e);
  e.select();
  document.execCommand('copy');
  e.remove();
})();

 
・タイトル+改行+URL を作るブックマークレット 

javascript:(function(){
  e = document.createElement('textarea');
  e.textContent = '・' + document.title + '\r\n' + '<a href="' + document.URL + '" target="_blank">' + document.URL + '</a>';
  document.body.appendChild(e);
  e.select();
  document.execCommand('copy');
  e.remove();
})();