no title [bookmarklet]
var r_n = document.evaluate('//a[@class="resnumhead"][./following-sibling::span[@class="trip"]]', document, null, 7, null);
var trip = document.evaluate('//span[@class="trip"]/text()', document, null, 7, null);
var gyo;
var t = document.createElement("textarea");
var ntext;
for (var i = 0; i < r_n.snapshotLength; i++) {
gyo = r_n.snapshotItem(i).name + "<>" + trip.snapshotItem(i).nodeValue + "\n";
ntext = document.createTextNode(gyo);
t.appendChild(ntext);
}
document.body.appendChild(t);
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。