User:Spasemunki/monobook.js
Appearance
(Redirected from User:Spasemunki/standard.js)
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. |
The accompanying .css page for this skin can be added at User:Spasemunki/monobook.css. |
// [[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']]
}
);