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.
// [[User:Lupin/popups.js]]

importScript('User:Lupin/popups.js');


//Twinkle
importScript('User:AzaToth/twinkle.js');

//Tags code
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:[['POV|%date','Tagged for NPOV'],
          ['POV-section|%date','Tagged section for NPOV'],
          ['Disputed|%date','Tagged for factual accuracy'],
          ['cleanup|%date','Adding Cleanup Tag'],
          ['unreferenced|%date','Tagged for reference addition'],
          ['refimprove|%date','Tagged for reference improvement'],
          ['original research|%date','Tagged for original research'],
          ['pagenumbers|%date','Tagged for citations needing page numbers'],
          ['orphan|%date','Tagged article as an orphan'],
          ['context|%date','Tagged intro as needing further context']]
 }
);