User:Libcub/monobook.js

From Wikipedia, the free encyclopedia

If a message on your talk page led you here, please be wary of who left it. Code that you insert on this page could contain malicious content capable of compromising your account. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. If this is a .js page, the code will be executed when previewing the page.
Note: After saving, you have to bypass your browser's cache to see the changes. In Internet Explorer and Firefox, hold down the Ctrl key and click the Refresh or Reload button. Opera users have to clear their caches through Tools→Preferences, see the instructions for Opera. Konqueror and Safari users can just click the Reload button.
importScript('User:Alex Smotrov/searchlist.js');
importScript('Wikipedia:WikiProject User scripts/Scripts/Changes since I last edited');
wikEdRegExTypoFix = true;
var wikEdScrollToEdit = false;
 
importScript('Wikipedia:WikiProject User scripts/Scripts/Add LI menu');
importStylesheet('Wikipedia:WikiProject User scripts/Scripts/Add LI menu/css');
importScript('User:LilDice/flexitags.js');
//create Config object, you only have to do this once.
var FlexiTagConfig = {};
FlexiTagConfig.minoredit = true;
//The tabs field stores an array of all our tabsets.
//so initialize the array, (again only once).
FlexiTagConfig.tabs = new Array();
//Push a new tagset on our tabs array
//this tagset will have have the name flexitags
//it will show up in the Main and User_talk namespaces.
//The tagset contains external-links template, the trivia template and th
FlexiTagConfig.tabs.push(
{ name:'flexitags',
   namespace:['Main','User_talk'],
   tagset:[['external-links|%date','See [[WP:EL]]'],
          ['trivia','Adding Trivia Section'],
          ['Autobio-warn|%prompt(Article Name)'],
          ['cleanup','Adding Cleanup Tag']]
}
);
FlexiTagConfig.tabs.push({name:'userwarnings',
namespace:['User_talk'],
tagset:[['external-links|%date','See [[WP:EL]]'],
['cleanup','Adding Cleanup Tag']]
});