BibleGateway.com Reference Remover

By James Anderson Last update Oct 22, 2007 — Installed 94 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           BibleGateway.com Reference Remover
// @author         James N. Anderson
// @namespace      http://www.proginosko.com
// @description    Removes superscript references in passages from BibleGateway.com
// @version        0.1
// @include        http://www.biblegateway.com/passage/*
// ==/UserScript==


var content = document.getElementById('content');

// Remove all superscript hyperlinked references
content.innerHTML = content.innerHTML.replace(/<sup>[\(\[]<a.*?a>[\)\]]<\/sup>/g, '');