Skip to content

Instantly share code, notes, and snippets.

@nphyx
Created October 31, 2012 00:20
Show Gist options
  • Save nphyx/3984030 to your computer and use it in GitHub Desktop.
Save nphyx/3984030 to your computer and use it in GitHub Desktop.
Pastafarize user script for greasemonkey
// ==UserScript==
// @name Pastafarize
// @description Replaces "God" with "Flying Spaghetti Monster" for the in-place edification of the faithful pastafarian via other religious texts.
// @grant none
// @exclude https://gist.github.com/*
// ==/UserScript==
var html = document.body.innerHTML;
html = html.replace(/God/g, "The Flying Spaghetti Monster");
document.body.innerHTML = html;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment