User:FreddoR/menu.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
![]() | Documentation for this user script can be added at User:FreddoR/menu. |
// Set each new link's text and url
$('.myLinks1').text('Policies').attr('href', 'http://en.wikipedia.org/wiki/Wikipedia:List_of_policies');
$('.myLinks2').text('Guidelines').attr('href', 'http://en.wikipedia.org/wiki/Wikipedia:List_of_guidelines');
$('.myLinks3').text('Main Style').attr('href', 'http://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Contents');
$('.myLinks4').text('Wiki Markup').attr('href', 'http://en.wikipedia.org/wiki/Help:Wiki_markup');
$('.myLinks5').text('Template Tagging').attr('href', 'https://en.wikipedia.org/wiki/Wikipedia:Template_messages');
$('.myLinks6').text('Cleanup Tags').attr('href', 'https://en.wikipedia.org/wiki/Wikipedia:Template_messages/Cleanup#General_cleanup');
$('.myLinks7').text('List of InfoBoxes').attr('href', 'https://en.wikipedia.org/wiki/Wikipedia:List_of_infoboxes');
$('#p-interaction').clone(true).insertAfter($('#p-interaction')).addClass('mylinks').removeAttr('id').find('h3').text('Shortcuts');
$('.mylinks li').remove();
$('.mylinks ul').append('<li><a href="/wiki/Wikipedia:List_of_guidelines">Guidelines</a></li>');
$('.mylinks ul').append('<li><a class="myLinks2"></a></li>');
/*
$('.mylinks .pBody ul').append('<li><a class="myLinks3"></a></li>');
$('.mylinks .pBody ul').append('<li><a class="myLinks4"></a></li>');
$('.mylinks .pBody ul').append('<li><a class="myLinks5"></a></li>');
$('.mylinks .pBody ul').append('<li><a class="myLinks6"></a></li>');
$('.mylinks .pBody ul').append('<li><a class="myLinks7"></a></li>');
*/
var ptLinksToAdd = [
{
label: "New pages",
title: "Feed of recently created pages",
url: "/wiki/Special:NewPagesFeed",
index: 5
},
{
label: "AfD",
url: "/wiki/Wikipedia:Articles_for_Deletion",
index: 6
}
];
var ptList2 = document.getElementsByClassName("myLinks").getElementsByTagName("ul")[0];
for (var i = 0; i < ptLinksToAdd.length; i++) {
var newListItem = document.createElement("li");
var newLink = document.createElement("a");
newLink.setAttribute("href", ptLinksToAdd[i].url);
if (ptLinksToAdd[i].hasOwnProperty("title")) {
newLink.setAttribute("title", ptLinksToAdd[i].title);
}
newLink.appendChild(document.createTextNode(ptLinksToAdd[i].label));
newListItem.appendChild(newLink);
//if (ptLinksToAdd[i].hasOwnProperty("index")) {
// ptList2.insertBefore(newListItem, ptList2.childNodes[ptLinksToAdd[i].index]);
//} else {
ptList2.appendChild(newListItem);
//}
}
var ptList = document.getElementById("p-personal").getElementsByTagName("ul")[0];
for (var i = 0; i < ptLinksToAdd.length; i++) {
var newListItem = document.createElement("li");
var newLink = document.createElement("a");
newLink.setAttribute("href", ptLinksToAdd[i].url);
if (ptLinksToAdd[i].hasOwnProperty("title")) {
newLink.setAttribute("title", ptLinksToAdd[i].title);
}
newLink.appendChild(document.createTextNode(ptLinksToAdd[i].label));
newListItem.appendChild(newLink);
if (ptLinksToAdd[i].hasOwnProperty("index")) {
ptList.insertBefore(newListItem, ptList.childNodes[ptLinksToAdd[i].index]);
} else {
ptList.appendChild(newListItem);
}
}