Created
August 12, 2010 22:05
-
-
Save Soft/521855 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// ==UserScript== | |
// @name Facebook Me gusta | |
// @include http://*.facebook.com/* | |
// @description Changes Like links to more appropriate "Me gusta" | |
// ==/UserScript== | |
Array.prototype.slice.call(document.querySelectorAll("button.like_link")).forEach(function (elem) { | |
elem.querySelector(".default_message").innerText = "Me gusta"; | |
elem.querySelector(".saving_message").innerText = "No me gusta"; | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment