LoginSignup
2
2

More than 5 years have passed since last update.

訪問済みのリンクを未訪問にするブックマークレット

Last updated at Posted at 2016-03-22

訪問済みのリンクを未訪問にするブックマークレット

もう覚えてないくらい昔に作ったものだけど投下

未訪問というか、a タグ href 属性の末尾に、問答無用で ? + 乱数三桁 付けるだけです。
未訪問状態の画面キャプチャをしたい時などに。

javascript:(function(){var%20at%20=%20document.getElementsByTagName('a');%20var%20atr%20=%20Math.random().toString().substr(3,%203);%20for(i%20in%20at){var%20yv%20=%20at[i].getAttribute('href')%20+%20'?'%20+%20atr;%20at[i].setAttribute('href',%20yv)}})();;
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2