d_s / FetLife Bigger Images

// ==UserScript==
// @name         FetLife Bigger Images
// @version      0.1
// @description  make images on friend feed bigger!
//
// @author       d_s
// @license      MIT
// @copyright    2020, d_s (https://openuserjs.org/users/d_s)
//
// @require      http://code.jquery.com/jquery-latest.js
//
// @grant        none
// @match        https://fetlife.com/home/*
// ==/UserScript==

(function () {
  'use strict';
  var size = 200; //originally they are 160px
  $(document).ready(function () {
    $("head").append('<style id="bigger_imaghes" type="text/css">.mr2.mt2, .mr2.mt2 img{width:' + size + 'px !important;height: ' + size + 'px !important;}</style>');
  });
})();