Last active
March 19, 2017 13:01
-
-
Save cohalz/0d9e9658ff3e9235e88148169c9be59d to your computer and use it in GitHub Desktop.
マイページにてグルコスの月間ランキングを確認するブックマークレット
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){var xmlHttp=new XMLHttpRequest();var player_name=prompt('%E8%AA%BF%E3%81%B9%E3%81%9F%E3%81%84%E3%83%97%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%E3%83%8D%E3%83%BC%E3%83%A0%E3%82%92%E6%AD%A3%E7%A2%BA%E3%81%AB%E5%85%A5%E5%8A%9B%E3%81%97%E3%81%A6%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84', '');if(!player_name)return;var month=prompt('%E8%AA%BF%E3%81%B9%E3%81%9F%E3%81%84%E6%9C%88%E3%82%92%E5%85%A5%E5%8A%9B%E3%81%97%E3%81%A6%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84\n(%E4%BE%8B:2017%E5%B9%B43%E6%9C%88%E3%82%92%E8%AA%BF%E3%81%B9%E3%81%9F%E3%81%84%E5%A0%B4%E5%90%88%E3%81%AF201703%E3%81%A8%E5%85%A5%E5%8A%9B)', '');var index=0;var date=new Date();var now=date.getFullYear()+""+("0"+(date.getMonth()+1)).slice(-2);if(month.length == 6 && 201608 <= month && month <= now){var flag=false;while(!flag&&index<10){xmlHttp.open("GET","https://mypage.groovecoaster.jp/sp/json/monthly_ranking.php?id="+month+"&page="+index,false);xmlHttp.send(null);var data=JSON.parse(xmlHttp.responseText);for(var i=0;i<data.rank.length;i++){if(data.rank[i].player_name===player_name){alert(player_name+"%E3%81%95%E3%82%93%E3%81%AE"+month.slice(0,4)+"%E5%B9%B4"+month.slice(4)+"%E6%9C%88%E3%81%AE%E6%9C%88%E9%96%93%E3%83%A9%E3%83%B3%E3%82%AD%E3%83%B3%E3%82%B0%E3%81%AF"+data.rank[i].rank+"%E4%BD%8D%E3%81%A7%E3%81%99");flag=true;break;}}index++;}}})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
使うまでの手順
連絡は@cohalzまで
【注意事項】グルコスサーバの負荷対策のため,1000位以内のランキングまでしか探さないようになっています