Email or username:

Password:

Forgot your password?
Gregory

Kinda want a browser extension that would replace all mentions of "X" with "Twitter" in news articles

2 comments
Gregory

I remembered that bookmarklets are a thing an made one:

javascript:(function(){document.body.innerHTML=document.body.innerHTML.replace(/X([ ,.:’'"”])/g, "Twitter$1");})();

Go Up