Fix Games Workshop Image viewer

I am sick of their stupid magnifying glass so just wrote a horribly ugly fix to put the big images in by default.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Fix Games Workshop Image viewer
// @namespace    http://your.homepage/
// @version      0.1
// @description  I am sick of their stupid magnifying glass so just wrote a horribly ugly fix to put the big images in by default.
// @author       You
// @match        http://www.games-workshop.com/*
// @grant        snone
// ==/UserScript==
$('#hero-slot').css(
    {
        width: $(document).width(),
        textAlign: 'center'
    }
);
$('.img-holder').css(
    {
        width: 920,
        textAlign: 'center'
    }
);

$('.als-wrapper').on('click', '.als-item', function(ev){
    var imgSrc = $(this).find('img').attr('src'),
        imgSizePos = imgSrc.indexOf('70x70'),
        imgNewSrc = imgSrc.replace('70x70', '920x950');

    $('.img-holder img').attr('src', imgNewSrc);
    ev.stopPropagation();
    return false;
});