kaldata quoted images

Shrink quoted images

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         kaldata quoted images
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Shrink quoted images
// @author       bornofash
// @match        https://www.kaldata.com/forums/topic/*
// @require https://code.jquery.com/jquery-3.3.1.min.js
// @require https://greatest.deepsurf.us/scripts/2199-waitforkeyelements/code/waitForKeyElements.js?version=6349
// ==/UserScript==

waitForKeyElements('blockquote', shrink_images)

function shrink_images(blockquote) {
    blockquote.find('img').each(function() {
        var width = $(this).css('width');
        if (parseInt(width) > 200) {
            $(this).css('width', '200px');
            $(this).attr('title', 'Преоразмерена картинка (на ширина беше ' + width + ', а сега е 200px)');
        }
    });
};