Skip to content

Instantly share code, notes, and snippets.

@shogo82148
Created September 18, 2013 14:14
Show Gist options
  • Save shogo82148/6609747 to your computer and use it in GitHub Desktop.
Save shogo82148/6609747 to your computer and use it in GitHub Desktop.
CpSをツイートするためのスクリプト
// ==UserScript==
// @name Tweet CPS
// @namespace http://shogo82148.github.io
// @version 0.1
// @description show share CpS button on cookieclicker
// @match http://orteil.dashnet.org/cookieclicker/
// @copyright 2012+, shogo82148
// ==/UserScript==
(function () {
setTimeout(function() {
var bar = document.getElementById('topBar');
bar.innerHTML = '<a href="#" id="tweet_cps" target="_blank">Tweet</a>' + bar.innerHTML;
var link = document.getElementById('tweet_cps');
setInterval(update, 1000);
update();
function update() {
var units = ['', '万', '億', '兆', '京', '垓', '𥝱', '穣', '溝', '澗', '正', '載', '極', '恒河沙', '阿僧祇', '那由他', '不可思議', '無量大数'];
var i;
var text = '';
var num = unsafeWindow.Game.cookiesPs|0;
for(i = 0; i<units.length; i++) {
if(num % 10000 != 0) {
text = (num % 10000) + units[i] + text;
}
num = (num / 10000) | 0;
}
text = "わたしのCpSは" +(text || '0') + "です" ;
var hashtags = ["cookieclicker"];
var shareurl = 'https://twitter.com/share?' +
'lang=ja&hashtags=' + encodeURIComponent(hashtags.join(',')) +
'&url=' + encodeURIComponent('http://orteil.dashnet.org/cookieclicker/') +
'&text=' + encodeURIComponent(text);
link.href = shareurl;
}
}, 1500);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment