Skip to content

Instantly share code, notes, and snippets.

@oquno
Created April 2, 2011 22:20
Show Gist options
  • Save oquno/899960 to your computer and use it in GitHub Desktop.
Save oquno/899960 to your computer and use it in GitHub Desktop.
fix mobile.twitter.com title
// ==UserScript==
// @name fix mobile.twitter.com title
// @namespace http://oq.la/
// @include http://mobile.twitter.com/*
// ==/UserScript==
var nameArea = document.getElementsByClassName("user-screen-name");
if (nameArea.length > 0)
document.title = nameArea[0].innerText.replace(/\n/g, "") + " on Twitter";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment