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.
/*
// See  [[phab:T72470]] for how to fix.
if(wgNamespaceNumber == 6) {
  if(wgAction == 'edit' || wgAction == 'submit') {
    addOnloadHook(function () {
      mw.util.addPortletLink('p-cactions','javascript:doNcd()','ncd','ca-ncd');
      mw.util.addPortletLink('p-cactions','javascript:doCH()','ch','ca-ch');
    });
  } else {
    addOnloadHook(function () {
      var url = mw.config.get('wgServer') + mw.config.get('wgScript') + '?title=' + encodeURIComponent(mw.config.get('wgPageName')) + '&action=edit';
      mw.util.addPortletLink('p-cactions',url + '&autoncd=true','ncd','ca-ncd');
      var urlch = 'https://tools.wmflabs.org/commonshelper/?interface=en&image=' + encodeURIComponent(wgTitle) + '&lang=en';
      mw.util.addPortletLink('p-cactions',urlch + '','ch','ca-ch');
    });
  }
}*/
 
if(queryString('autoncd')) addOnloadHook(function() { doNcd(); })
function doNcd() {
  var txt = document.getElementById('wpTextbox1');
  if(!txt) return;
  txt.value = txt.value.replace(/\{\{[\s\t\n\r]*(mtc|ctwc|cwc|copy[ -_]to[ -_]wikimedia[ -_]commons|needs[ -_]commons[ -_]category|tocommons|movetocommons|move[ -_]to[ -_]commons|to[ -_]commons|move[ -_]to[ -_]wikimedia[ -_]commons|copy[ -_]to[ -_]commons|move-to-commons|commons[ -_]ok)[\s\t\n\r]*\}\}/ig,'');
  txt.value = '{' + '{' + 'subst:ncd}}\n\n' + txt.value;
  document.getElementById('wpSummary').value += ' this file has been moved to Wikimedia Commons: tagging for deletion';
  document.getElementById('wpSave').click();
}
 
function queryString(p) {
  var re = RegExp('[&?]' + p + '=([^&]*)');
  var matches;
  if (matches = re.exec(document.location)) {
    try {
      return decodeURI(matches[1]);
    } catch (e) {
    }
  }
  return null;
}