From c1de7a249212aff9d879e9c215b5cced8ca5607e Mon Sep 17 00:00:00 2001 From: Kayla Benker Date: Fri, 6 Nov 2015 15:54:28 -0600 Subject: [PATCH] drink up --- Source/content_script.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/content_script.js b/Source/content_script.js index 90f640b7..da18f86e 100644 --- a/Source/content_script.js +++ b/Source/content_script.js @@ -54,6 +54,12 @@ function replaceText(v) } } } + + // clean it + v = v.replace(/\bclean it\b/gi, "soak it and yourself in alcohol"); + + // whiskey + v = v.replace(/\bwater\b/gi, "whiskey"); return v; }