Skip to content

Instantly share code, notes, and snippets.

@jokertarot
Created November 23, 2013 10:48
Show Gist options
  • Save jokertarot/7613162 to your computer and use it in GitHub Desktop.
Save jokertarot/7613162 to your computer and use it in GitHub Desktop.
Twitter < "進捗どうですか?"
// ==UserScript==
// @name sinchoku doudesuka
// @description 進捗どうですか?
// @include https://twitter.com/*
// ==/UserScript==
var shinchoku = function() {
var d = document.getElementById('tweet-box-mini-home-profile');
if (d) d.firstChild.innerHTML = '進捗どうですか?';
};
window.addEventListener('load', function() {
shinchoku();
var n = document.getElementsByClassName('tweet-box')[0];
if (n) n.addEventListener('focusout', function(e) {
setTimeout(shinchoku, 0);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment