JK Rowling to Terf

Change JK Rowling and J.K. Rowling to Transphobic TERF on all webpages

  1. // ==UserScript==
  2. // @name JK Rowling to Terf
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Change JK Rowling and J.K. Rowling to Transphobic TERF on all webpages
  6. // @match *://*/*
  7. // @grant none
  8. // @license MIT
  9. // ==/UserScript==
  10.  
  11.  
  12. (function() {
  13. 'use strict';
  14. document.body.innerHTML = document.body.innerHTML.replace(/JK Rowling|J\.K\. Rowling/g, 'TERF');
  15. })();