bookmarklet

    @@ -5,7 +5,18 @@ * @license MIT License * @require */ +$.ajaxSetup({ xhrFields: { withCredentials: true } }); -var d=document; -var tx=d.selection?d.selection.createRange().text:d.getSelection(); -alert(tx); +function getCsv() { + $.ajax({ + type: 'post', + url: 'https://p.eagate.573.jp/game/2dx/25/p/djdata/score_download.html', + async: false, + data: { style: 'SP' }, + success: function(data) { + scores = $(data).find('#score_data').text() + } + }); +} +getCsv(); +console.log(scores);
  • /*
     * @title bookmarklet
     * @description my bookmarklet
     * @include http://*
     * @license MIT License
     * @require 
     */
    $.ajaxSetup({ xhrFields: { withCredentials: true } });
    
    function getCsv() {
      $.ajax({
        type: 'post',
        url: 'https://p.eagate.573.jp/game/2dx/25/p/djdata/score_download.html',
        async: false,
        data: { style: 'SP' },
        success: function(data) {
          scores = $(data).find('#score_data').text()
        }
      });
    }
    getCsv();
    console.log(scores);
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2018/02/26 23:13:11 - 2018-02-26
  2. 2018/02/26 23:05:52 - 2018-02-26
  3. 2018/02/26 21:57:49 - 2018-02-26
  4. 2018/02/26 21:53:43 - 2018-02-26
  5. 2018/02/26 21:41:08 - 2018-02-26