3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

niconico動画の視聴履歴から各動画IDを取得する

Posted at
(function (document){
  var history_children=document.querySelectorAll("#historyList > div");
  var len=history_children.length,i=0;
  var arr=[];
  while(len-i){
    arr[arr.length]=(history_children[i].id).split("_")[1];
    i+=1|0;
  }
  console.dir(arr);//何か処理
}(document));

GreaseMonkeyで使えたらと思い、適当に書いてみた。
querySelectorAllを使っているので比較的新しいブラウザ向けで想定。

3
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?