User:WikiWikiWayne/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:WikiWikiWayne/common.css. |
/* Find duplicate arguments */
findargdupsresultsbox = 'yes';
importScript('User:Frietjes/findargdups.js'); // [[User:Frietjes/findargdups]]
/* Add-on for wikEd */
wikEdRegExTypoFix = true;
/* Adds Sources script links to lefthand Toolbar */
importScript('User:Ohconfucius/script/Sources.js'); // [[User:Ohconfucius/script/Sources.js]]
/* Disables auto-launch of diff */
autoEdClick = false;
/* Adds AutoFormatter to Toolbar */
mw.loader.load( '//de.wikipedia.org/w/index.php?title=Benutzer:TMg/autoFormatter.js&action=raw&ctype=text/javascript' );
/* Puts Semi Automated Peer Review link next to log-in/log-out link at top of page */
mw.loader.load('//en.wikipedia.org/w/index.php?title=User%3AAndyZ%2Fpeerreviewer.js&action=raw&ctype=text/javascript'); // [[User:AndyZ/peerreviewer.js]]
/* Adds Teahouse Badges to Wikilove */
importScript("User:Ocaasi/WikiLoveinstallscript.js");
/* Adds a [TB] link next to every signature at The Teahouse to send a Talkback message to their Talk page */
importScript("User:Writ Keeper/Scripts/teahouseTalkbackLink.js"); // Adds a talkback link to signatures on the Teahouse
/* Puts Go to top link at bottom of each page */
importScript('User:Numbermaniac/goToTop.js'); // [[User:Numbermaniac/goToTop.js]]
/* Puts a Highlight duplicate links link on left side of each page */
importScript('User:Ucucha/duplinks.js'); // [[User:Ucucha/duplinks]]
/* Puts a reFILL link on the left side of each page */
mw.loader.load( "https://meta.wikimedia.org/w/index.php?title=User:Zhaofeng_Li/Reflinks.js&action=raw&ctype=text/javascript" );
/* Puts a Pending changes link at top right of each page */
var head = document.getElementById('mw-head').getElementsByTagName('ul')[0];
var li = document.createElement("li");
var a = document.createElement("a");
a.appendChild(document.createTextNode("Pending changes"));
a.href = "https://en.wikipedia.org/wiki/Special:PendingChanges";
li.appendChild(a);
head.insertBefore(li, head.childNodes[9]);
/* Adds a Pending changes link to Tools links on left side of pages */
addOnloadHook(function () { //add new pages link to toolbar
addPortletLink(
"p-navigation", // toolbox portlet
"https://en.wikipedia.org/wiki/Special:PendingChanges",
"Pending Changes" // link label
)});
/* Adding one click archiver */
/* User:Technical_13/Scripts/OneClickArchiver */
importScript( 'User:Technical_13/Scripts/OneClickArchiver.js' );// Backlink: [[User:Technical_13/Scripts/OneClickArchiver]]
/* Adding SmartLinks */
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) > -1 ) {
importScript('User:V111P/js/smartLinkingLoader.js'); // [[User:V111P/js/smartLinkingLoader.js]]
}
/* Adds Dabfinder links to toolbox */
/* User:Meteor sandwich yum/dabfinder.js */
importScript( 'User:Meteor sandwich yum/dabfinder.js' );// Backlink: [[User:Meteor sandwich yum/dabfinder.js]]
/* Adds parent and child sort to HotCat */
window.hotcat_use_category_links = true;
/* Adds AutoEd to Tools */
importScript('Wikipedia:AutoEd/complete.js');
/* Adds FurMe for tagging images with licensing */
importScript('User:AWeenieMan/furme.js');
/* Adds links in lefthand Tools links section to unify dates per MOS:DATES */
importScript('User:Ohconfucius/script/MOSNUM dates.js'); // [[User:Ohconfucius/script/MOSNUM dates.js]]
/* Puts a link in the Tools tab to easily submit Diffs to EditQuest */
importScript('User:Samtar/dev/editquest/editquest.js'); //Edit Quest
/* Adds DYK Check link to lefthand Tools links */
importScript('User:Shubinator/DYKcheck.js'); //DYKcheck tool
/* Adds Reflinks link to lefthand links */
// Add [[WP:Reflinks]] launcher in the toolbox on left
$(function () {
mw.util.addPortletLink(
"p-tb", // toolbox portlet
"http://dispenser.homenet.org/~dispenser/cgi-bin/webreflinks.py/" + mw.config.get('wgPageName')
+ "?client=script&citeweb=on&overwrite=&limit=20&lang=" + mw.config.get('wgContentLanguage'),
"Reflinks" // link label
)});
//* Adds Mass Roolback with checkboxes portlet to user contribs page *//
importScript('User:Kangaroopower/MRollback.js'); //Mass Rollback Script [[User:Kangaroopower/MRollback.js]]
//This function adds a link to the toolbox which, when clicked, displays the size of the page
//and the size of the prose in bytes. See the talk page for more details.
//
//To use this function add mw.loader.load('//en.wikipedia.org/w/index.php?title=User%3ADr+pda%2Fprosesizebytes.js&action=raw&ctype=text/javascript'); // [[User:Dr pda/prosesizebytes.js]] to your monobook.js
//
mw.loader.load('//en.wikipedia.org/w/index.php?title=User%3ADr+pda%2Fprosesizebytes.js&action=raw&ctype=text/javascript'); // [[User:Dr pda/prosesizebytes.js]]