User:Blair Bonnett/monobook.js

Source: Wikipedia, the free encyclopedia.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// Twinkle
importScript('User:AzaToth/twinkle.js');
TwinkleConfig = {
        watchSpeedyPages : [ 'g1', 'g2', 'g3', 'g4', 'g5', 'g6', 'g7', 'g8', 'g9', 'g10', 'g11', 'g12', 'a1', 'a2', 'a3', 'a5', 'a7', 'r1', 'r2', 'r3', 'c1', 'c3', 'u1', 'u2', 'u3', 't1', 'p2' ]
};

// Deletion sorting tool
importScript('Wikipedia:WikiProject User scripts/Scripts/Add LI menu');
importStylesheet('Wikipedia:WikiProject User scripts/Scripts/Add LI menu/css');
importScript('Wikipedia:WikiProject Deletion sorting/delsort.js');

// Navigation popups
importScript('User:Lupin/popups.js');
popupFixDabs = true;

// New page patroller
importScript('User:TheJosh/Scripts/NewPagePatrol.js');

// Recent changes patroller
importScript('User:TheJosh/Scripts/RecentChangesPatrol.js');
rcp_num_pages = 25;
rcp_refresh = 20;

// New users patroller
importScript('User:TheJosh/Scripts/NewUserPatrol.js');

// User watchlist
importScript('User:Tra/userwatchlist.js'); //[[User:Tra/userwatchlist.js]]

// Friendly
importScript('User:Ioeth/friendly.js');

// wlUnwatch
if (wgCanonicalSpecialPageName && wgCanonicalSpecialPageName=='Watchlist' && wgAction=='view') 
$(function () {
 var frm = document.getElementsByTagName('form')[0];
 frm.parentNode.insertBefore(document.createTextNode(' | '), frm);
 var lnk = document.createElement('a');
 lnk.appendChild(document.createTextNode('Unwatch…'));
 lnk.href = 'javascript:importScript("User:Alex_Smotrov/wlunwatch.js")';
 frm.parentNode.insertBefore(lnk, frm);
})