Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
Hi, brand new to Tampermonkey/Greasemonkey. Does anyone have (or can someone write) a quick script that just simply replaces a friend's name on Facebook?
I want "Friend Name" to become "Silly Nickname".
I guess really it could replace any string, but I think you get the point.
Thanks!
Re: @ScottBeeson:
I'm sure there are others out there, but here is a script I created a while ago that should be able to do what you are looking for.
It replaces any keyword on a page with different text or an image.
https://github.com/LenAnderson/Substitute
One thing that might make this script more convenient for use on FB is a MutationObserver to watch for and modify new newsfeed content as it automatically loads into the page (usually triggered by scrolling). Or perhaps it could be on a timer with setInterval() if the performance is acceptable.
Re: @jscher2000:
True. I thought I already did in this script but apparently it I only added the MutationObserver in another, similar one. I'll update tomorrow :)
Ok, the script is now updated to use MutationObserver.