Jump to content

User:AntiCompositeNumber/centralAuthGuard.js

From Meta, a Wikimedia project coordination wiki

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/**	ACHTUNG!
	ALLES TURISTEN UND NONTEKNISCHEN LOOKENSPEEPERS!
	DIESE SPECIAL:CENTRALAUTH TASTEN IST NICHT FÜR DER GEFINGERPOKEN UND MITTENGRABEN!
	ODERWISE IST EASY TO SCHNAPPEN DER SPRINGENWERK, BLOWENFUSEN UND POPPENCORKEN 
	MIT SPITZENSPARKEN. IST NICHT FÜR GEWERKEN BEI DUMMKOPFEN. DER RUBBERNECKEN 
	SIGHTSEEREN KEEPEN DAS COTTONPICKEN HÄNDER IN DAS POCKETS MUSS.
	ZO RELAXEN UND WATSCHEN DER BLINKENLICHTEN.
	
	Removes options to delete or merge accounts from Special:CentralAuth
	@license CC0-1.0
	@author AntiCompositeNumber
*/
$( function () {
	$( '.mw-special-CentralAuth #mw-centralauth-delete' ).parent().hide();
	$( '.mw-special-CentralAuth .mw-centralauth-wikislist tr > :first-child' ).hide();
	$( '.mw-special-CentralAuth #mw-centralauth-merged input[type=submit]' ).hide();
});