Created
April 29, 2012 06:05
-
-
Save blendmaster/2533935 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @namespace http://qoln.org/ | |
// @include http://*facebook.com* | |
// @creator Miles Meloro [[email protected]], 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