_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Alexis Jazz/Hammertime.js

Nowadays, User:Alexis Jazz/Hammertime.js has become a topic of great interest to a wide variety of people. From experts in the field to those seeking information on the topic, User:Alexis Jazz/Hammertime.js represents a point of interest for many. Whether due to its historical importance, impact on current society or relevance in the scientific field, User:Alexis Jazz/Hammertime.js continues to be a topic that generates great debate and fascination. In this article, we will explore the different facets of User:Alexis Jazz/Hammertime.js and its relevance in today's world, providing a complete and up-to-date view on the topic.
// Stop content on the page with a button. (only in article namespace) Made to stop potentially distracting GIF animations. Not tested in all browsers. It boils down to a simple window.stop.
// Made by Alexis Jazz who takes no responsiblity whatsoever
// CC BY-SA 3.0
// Add:
// mw.loader.load( '/w/index.php?title=User:Alexis Jazz/Hammertime.js&action=raw&ctype=text/javascript' );
// to ] to activate.

ns = mw.config.get( 'wgNamespaceNumber' );

switch ( ns ) {
	case 0:
		function HAMMERTIME() {
			window.stop();
		}
var STOP;
mw.loader.using( 'oojs-ui-core' ).done( function () {
    STOP = new OO.ui.ButtonWidget( {
    	id: 'STOPBUTTON',
        label: 'X',
	classes: 
    } );
    STOP.on( 'click', HAMMERTIME);
} );

$( document ).ready( function() {
	$( '#mw-content-text' ).prepend(STOP.$element);
} );
}