1
0

More than 3 years have passed since last update.

閲覧しているWebページの画像ファイル名一覧を表示するブックマークレット

Last updated at Posted at 2019-12-31

img要素のsrc属性の値を一覧でブラウザーのコンソール画面に表示するブックマークレット。

javascript:Array.prototype.forEach.call(document.querySelectorAll('img[src]'), el => console.log(el.getAttribute('src')));

次のブックマークレットは、画像ファイルの拡張子が.png.jpg.gifである場合のみコンソール画面に表示される。

javascript:Array.prototype.forEach.call(document.querySelectorAll('img[src]'), el => { const src = el.getAttribute('src'); if (src.match(/\.(?:png|jpg|gif)$/)) console.log(src); });
1
0
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
1
0