Skip to content

Instantly share code, notes, and snippets.

@blendmaster
Created April 29, 2012 06:05
Show Gist options
  • Save blendmaster/2533935 to your computer and use it in GitHub Desktop.
Save blendmaster/2533935 to your computer and use it in GitHub Desktop.
// @namespace http://qoln.org/
// @include http://*facebook.com*
// @creator Miles Meloro [milemeloro@yahoo.com], rewritten by anon
// @version 0.11
// @date 2012-04-29
// ==/UserScript==
var inputButton = document.createElement('button');
inputButton.textContent = 'Love It';
inputButton.addEventListener( 'click', function () {
document.body.innerHTML =
document.body.innerHTML.replace(/([lL])ike/g, '$1ove');
});
document.getElementById('jewelContainer').appendChild(inputButton);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment