Bookmarklet

ブックマークレットとは何かについてや、使い方についてはJAVASCRIPT::BOOKMARKLETが参考になります。

navigation

SearchSWF (source)

見ているWebページ中のFlashのURLを抽出して一覧表示するブックマークレットです。 上記のリンクを右クリックなどでブックマークしてご使用下さい。

var params=document.getElementsByTagName('param');
var list = new Array();
for(var i=0; i<params.length; i++){
  var uri=params[i].value;
  if(uri.indexOf('.swf') != -1) list.push(uri);
}
if(list.length==0){
  alert('not found');
}else{
  var w = window.open('','','toolbar=yes,menubar=yes,height=400,width=600');
  w.document.writeln('<h1>SWF LIST</h1>');
  w.document.title='SWF LIST';
  for(i=0; i<list.length; i++){
    var fname = list[i].split('/');
    w.document.writeln('<a href=' + list[i] + '>' + fname[fname.length - 1] + '</a><br>');
  }
  w.document.close();
}
inserted by FC2 system