Last active
November 10, 2016 04:52
-
-
Save rtimmons/421907283e20133ea1de5a13107aaeef 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
// ==UserScript== | |
// @name Trumpicana | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description grab the 🙀 | |
// @author not me | |
// @match http://*/* | |
// @grant none | |
// ==/UserScript== | |
/* | |
1. Install Tampermonkey or similar UserScript extension | |
https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en | |
2. Add this file as a script | |
3. Enjoy | |
*/ | |
(function() { | |
'use strict'; | |
document.body.innerHTML = document.body.innerHTML.replace(/(donald)?\s*trump/gi,'🍊') | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment