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.
// CHECK IMAGE USAGE:
addOnloadHook(function () {
    var title;
    if (!(title = document.getElementById('t-whatlinkshere') )) return;
    if (!(title = title.getElementsByTagName('a')[0] )) return;
    if (!(title = title.href )) return;
    var re = /^.*\/wiki\/Special:Whatlinkshere\/Image:/;
    if (!title.match(re)) return;
    title = title.replace(re, '');
    addLink('p-tb', 'http://www.juelich.de/avatar/check-usage/check-usage.php?template&filename='+title,
            'Check image usage', 't-checkusage', 'Check usage of this image on various Wikimedia projects');
});