Change Transphobic Witch and Transphobic Witch to Transphobic TERF on all webpages
As of
// ==UserScript==
// @name Transphobic Witch to Terf
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Change Transphobic Witch and Transphobic Witch to Transphobic TERF on all webpages
// @match *://*/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.body.innerHTML = document.body.innerHTML.replace(/Transphobic Witch|J\.K\. Rowling/g, 'Transphobic TERF');
})();