Skip to content

Instantly share code, notes, and snippets.

@Soft
Created August 12, 2010 22:05
Show Gist options
  • Save Soft/521855 to your computer and use it in GitHub Desktop.
Save Soft/521855 to your computer and use it in GitHub Desktop.
// ==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