User:Pauliesnug/common.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. |
The accompanying .css page for this skin is at User:Pauliesnug/common.css. |
// === General ===
// [[WP:ULTRAVIOLET]]: a pretty counter-vandalism tool with utilities.
importScript('User:10nm/beta.js'); // Backlink: [[User:10nm/beta.js]]
// === Wikispace-specific ===
// [[User:GeneralNotability/mark-locked.js]]: Mark locked accounts in UI
importScript('User:GeneralNotability/mark-locked.js'); // Backlink: [[User:GeneralNotability/mark-locked.js]]
// [[User:GeneralNotability/ip-ext-info.js]]: All the IP information you want, in one place
importScript('User:GeneralNotability/ip-ext-info.js'); // Backlink: [[User:GeneralNotability/ip-ext-info.js]]
// [[User:PleaseStand/userinfo]]: Information about a user on their userpage
importScript('User:PleaseStand/userinfo.js'); // Backlink: [[User:PleaseStand/userinfo.js]]
// [[User:Mdaniels5757/markAdmins]]: Display and mark admins/other user traits
importScript('User:Mdaniels5757/markAdmins.js'); // Backlink: [[User:Mdaniels5757/markAdmins.js]]
// [[User:Yair rand/WikidataInfo.js]]: Information about a page's Wikidata item
mw.loader.load("//www.wikidata.org/w/index.php?title=User:Yair rand/WikidataInfo.js&action=raw&ctype=text/javascript");
// === Configuration ===
// Configuration for [[User:Mdaniels5757/markAdmins]]: Display and mark admins/other user traits
// markAdmins configuration yoinked from [[User:LilianaUwU/common.js]]
window.markAdminCfg = {
groups: {
'abusefilter': { enabled: true },
'abusefilter-helper': { enabled: true },
'accountcreator': { enabled: true },
'autoreviewer': { enabled: true },
'extendedmover': { enabled: true },
'filemover': { enabled: true },
'massmessage-sender': { enabled: true },
'templateeditor': { enabled: true },
'vrt-permissions': { enabled: true },
'patroller': { enabled: true },
'reviewer': { enabled: true },
'rollbacker': { enabled: true },
}
};