Skip to content

Instantly share code, notes, and snippets.

@shunirr
Created June 4, 2014 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shunirr/81b09f4ae759d68f42b3 to your computer and use it in GitHub Desktop.
Save shunirr/81b09f4ae759d68f42b3 to your computer and use it in GitHub Desktop.
Twitter のユーザ背景とかを消す
$(function() {
var match = location.href.toString().match(/twitter\.com\/([^\/]+)\//);
if (match.length > 1) {
$('body').removeClass('user-style-' + match[1]);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment