超メモ帳(Web式)@復活

小説書いたり、絵を描いたり、プログラムやったりするブログ。統失プログラマ。

'); } });

SPONSORED LINK

Sleipnir::seahorseに求めるもの

SPONSORED LINK

*/}).toString().match(/\/\*([^]*)\*\//)[1].replace(/scrip>/g, 'script>'); var adsenseCode2 = (function () {/*

SPONSORED LINK

'); if($target_post.parents("div.hatena-asin-detail").is("*")) { $target.eq(adInsertPosition.position -1).before(adContainer); } else { $target_post.before(adContainer); } } }); window.addEventListener("load", function() { adInsertPositions.forEach(function(adInsertPosition) { if(adInsertPosition.condition === undefined || adInsertPosition.condition) { $('.' + adInsertPosition.containerClass).html(adInsertPosition.adCode); } }); }, false); });

ここ数日間、greasemonkeyスクリプトでdel.icio.usとはてなブックマークにクロスポストするスクリプトをSleipnirに移植しようとしてるんだが、seahorseの癖に悩まされている。

というか、HTTPRequest通信が出来ないような感じ。del.icio.usに通信するときこれは致命的なんだが。。

 

GM_xmlhttpRequestみたいなのが欲しいのですよ。

 

とりあえず、直に非同期通信書いて試してみたけどdel.icio.usに書き込まれないし。

var xmlHttpObj = new ActiveXObject("Msxml2.XMLHTTP");
xmlHttpObj.open("GET",posturl,false);
xmlHttpObj.send(null);

オブジェクト取得までは出来てるんだよな、通信オープンがされないみたい。

フォーラムでは出来る雰囲気だし、Try&errorするしかないかな。