MOTS Extractor
javascript:(function(){
console.clear();
app=$('table.table-style:first tr[valign="top"] td:eq(0)').html().replace(/ /g, '').replace(/&/g, '&');
mots=$('table.table-style:first tr[valign="top"] td:eq(1)').html().replace(/ /g, '');
bArea = $('#pd8Child td:first').html().replace(/ /g, '').replace(/&/g, '&');
console.log("App Name: " + app + "\nMOTS ID: " + mots + "\nBusiness Area: " + bArea);
})();