User:Kormoran/monobook.js

In this article, the topic of User:Kormoran/monobook.js will be addressed from a multidisciplinary approach, with the purpose of providing a broad and complete vision of this topic. Different perspectives and recent studies will be analyzed to offer the reader a deep and up-to-date understanding of User:Kormoran/monobook.js. In addition, possible implications and practical applications of this topic in various areas will be explored, in order to highlight its relevance in contemporary society. Through this article, we seek to generate reflection and debate around User:Kormoran/monobook.js, thus contributing to the enrichment of knowledge and the promotion of critical thinking.
// <nowiki>

// La parte di script per l'estensione del box strumenti è opera di ]
// (un sentito ringraziamento) :-)

function morelinks() {
  var tabs = document.getElementById('p-cactions').cloneNode(true);
  tabs.id = 'mytabs';
  var listitems = tabs.getElementsByTagName('LI');
  for (i=0;i<listitems.length;i++) {
    if(listitems.id) listitems.id = 'mytabs-' + listitems.id;
  }
  document.getElementById('column-content').appendChild(tabs);

 var boxclone = document.createElement("div");
 boxclone.id = 'p-navclone';
 boxclone.setAttribute("class","portlet");

 var titolo = document.createElement("h5");
 titolo.innerHTML = "strumenti extra";
 boxclone.appendChild(titolo);

 var corpo = document.createElement("div");
 corpo.setAttribute("class","pBody");
 var list_ul = document.createElement("ul");

 var list_a = document.createElement("li");
 list_a.id = 'v-sandbox';
 var link_a = document.createElement("a");
 link_a.href = 'https://wikifreehand.com/en/Utente:Kormoran/Sandbox';
 link_a.innerHTML = 'Sandbox personale';
 list_a.appendChild(link_a);
 list_ul.appendChild(list_a);

 var list_b = document.createElement("li");
 list_b.id = 'v-tabelle';
 var link_b = document.createElement("a");
 link_b.href = 'https://wikifreehand.com/en/Wikipedia:Come_usare_le_tabelle';
 link_b.innerHTML = 'Markup tabelle';
 list_b.appendChild(link_b);
 list_ul.appendChild(list_b);

 var list_c = document.createElement("li");
 list_c.id = 'v-makeup';
 var link_c = document.createElement("a");
 link_c.href = 'https://wikifreehand.com/en/Aiuto:Markup_immagini';
 link_c.innerHTML = 'Markup immagini';
 list_c.appendChild(link_c);
 list_ul.appendChild(list_c);

 var list_d = document.createElement("li");
 list_d.id = 'v-tex';
 var link_d = document.createElement("a");
 link_d.href = 'https://wikifreehand.com/en/Wikipedia:Formule_matematiche_TeX';
 link_d.innerHTML = 'Markup TeX';
 list_d.appendChild(link_d);
 list_ul.appendChild(list_d);

 corpo.appendChild(list_ul);
 boxclone.appendChild(corpo);
 document.getElementById("column-one").appendChild(boxclone);
}

/*
if (window.addEventListener) window.addEventListener("load",morelinks,false);
else if (window.attachEvent) window.attachEvent("onload",morelinks);
*/
addOnloadHook(morelinks);

// </nowiki>