// ==UserScript== // @author Steven Bytnar // @name Facebook "Protect My Data" novelty // @version 1.0.3 // @namespace IPMDFB // @description Inserts a fake button at the top of the feed, just for fun. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js // @include *facebook.com/* // @downloadURL none // ==/UserScript== // v1.0.1 - initial release // v1.0.2 - localhost png reference converted to inline svg. // v1.0.3 - prepend on timeline and home pages. // Thanks to http://www.clickhole.com/article/privacy-win-facebook-adding-protect-my-data-button-7587 // for the idea and concept. var fbshpic = "\n"+ " \n"+ " \n"+ " \n"+ " image/svg+xml\n"+ " \n"+ " \n"+ " \n"+ " \n"+ " \n"+ " \n"+ ""; var fbshpiclhr = ""; var fun = "
"+ "
"+ fbshpic + "
"+ "
Press \"Protect My Data\" on Facebook
"+ "

Hi, we are always working to make you feel that your data is safe on Facebook. "+ "Press this nonfunctional \"Protect My Data\" button to give yourself a sense of security today!"+ "

"; $("#timeline_composer_container").prepend(fun); $("#pagelet_megaphone").prepend(fun);