Skip to content

Instantly share code, notes, and snippets.

@lwille
Created April 26, 2010 09:35
Show Gist options
  • Save lwille/379144 to your computer and use it in GitHub Desktop.
Save lwille/379144 to your computer and use it in GitHub Desktop.
Ändert den "gefällt mir" Link in "Sehr, sehr geil". Einfach in die Adresszeile einfügen, oder als Lesezeichen hinzufügen
javascript:a=document.getElementsByClassName('like_link');for(var i=0;i<a.length;i++){a[i].firstChild.innerHTML="Sehr, sehr geil!"};a=document.getElementsByClassName('like_box');for(var i=0;i<a.length;i++){if(a[i].firstChild && a[i].firstChild.firstChild && a[i].firstChild.firstChild.nextSibling){var b=a[i].firstChild.firstChild.nextSibling;b.innerHTML=b.innerHTML.replace(/anderen/g,"andere").replace(/gefällt das/,"finden das sehr geil").replace(/Dir/,"Du");}}return false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment