Reformat the Alias list with an space after each comma (IA)
À partir de
// ==UserScript==
// @name IAFD - Better Alias List (IA)
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Reformat the Alias list with an space after each comma (IA)
// @icon https://www.iafd.com/favicon-196x196.png
// @author Janvier57
// @match https://www.iafd.com/person.rme/*
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
var biodata = document.querySelector('p.headshotcaption + p.bioheading + .biodata');
if (biodata) {
var html = biodata.innerHTML;
var newHtml = html.replace(/<br>/g, ', ');
biodata.innerHTML = newHtml;
}
})();