bookmarklet
by
suteadolife
2018-02-26 [2018/02/26 23:13:11]
my 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 です。