Sleazy Fork is available in English.

IAFD - Better Alias List (IA)

Reformat the Alias list with an space after each comma (IA)

  1. // ==UserScript==
  2. // @name IAFD - Better Alias List (IA)
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Reformat the Alias list with an space after each comma (IA)
  6. // @icon https://www.iafd.com/favicon-196x196.png
  7. // @author Janvier57
  8. // @match https://www.iafd.com/person.rme/*
  9. // @license MIT
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. var biodata = document.querySelector('p.headshotcaption + p.bioheading + .biodata');
  16. if (biodata) {
  17. var html = biodata.innerHTML;
  18. var newHtml = html.replace(/<br>/g, ', ');
  19. biodata.innerHTML = newHtml;
  20. }
  21. })();