a値確認&編集更新スクリプト

    
      
  • //"document" requires the url which ends with ".dat" extension in the domain of "open2ch.net"
    //Use this code only under JavaScript Console!!(i recommend Google Chrome because i only use it with test)
    var d = document.getElementsByTagName("pre")[0].textContent;
    var ds = d.split("\n");
    
    var koteAll = ds.map(function(elm){ return elm.split("<>")[0]} )
    .filter(function(elm){ return (/.+◆/).test(elm)} )
    .map(function(elm){ return elm.replace(/<.?b>/g,"").replace(">",">","g").replace(/忍法帖【.*】/g,"")} )
    .sort();
    
    var koteUniq = koteAll.filter(function (x, i, self) { return self.indexOf(x) === i;});
    
    
    var res = koteUniq.map(
    function(elmU){
    return (koteAll.filter(function(elmA){
    return elmA == elmU;}));
    }
    );
    
    
    var sorted = res.sort(function(a,b){
    return b.length - a.length ;
    });
    
    
    var output_names = sorted.map(function(elm){return elm[0]});
    var output_values = sorted.map(function(elm){return elm.length});
    
    
    var output = [];//output[0]←コテハンの名前, output[1]←各コテハンのレス数
    output.push(output_names);
    output.push(output_values);
    
    //結果書き込み
    for(var i = 0; i < output[0].length; i++){
    document.write(output[0][i] + "," + output[1][i] + "<br>");
    }
    
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2021/03/08 16:08:06 - 2021-03-08
  2. 2021/03/08 16:05:45 - 2021-03-08
  3. 2021/03/08 16:03:43 - 2021-03-08
  4. 2021/03/08 16:01:59 - 2021-03-08
  5. 2021/03/08 14:49:46 - 2021-03-08
  6. 2021/03/08 14:24:38 - 2021-03-08
  7. 2021/03/08 14:22:30 - 2021-03-08
  8. 2021/03/08 14:20:06 - 2021-03-08
  9. 2021/03/08 14:01:27 - 2021-03-08
  10. 2021/03/08 13:59:47 - 2021-03-08
  11. 2021/03/08 13:49:29 - 2021-03-08
  12. 2021/03/08 13:46:28 - 2021-03-08
  13. 2021/03/08 13:43:44 - 2021-03-08
  14. 2021/03/08 13:36:12 - 2021-03-08
  15. 2021/03/08 13:33:05 - 2021-03-08
  16. 2021/03/08 13:30:17 - 2021-03-08
  17. 2021/03/08 13:26:38 - 2021-03-08
  18. 2021/03/08 13:23:13 - 2021-03-08
  19. 2021/03/08 13:18:45 - 2021-03-08
  20. 2021/03/08 13:17:37 - 2021-03-08
  21. 2021/03/08 13:06:10 - 2021-03-08
  22. 2021/03/08 13:03:33 - 2021-03-08
  23. 2021/03/08 12:55:12 - 2021-03-08