Greasy Fork is available in English.

Hide all images - Facebook messenger

Hide all images - Facebook messenger - make all tiny thumbnails

Verzia zo dňa 06.07.2018. Pozri najnovšiu verziu.

// ==UserScript==
// @name        Hide all images - Facebook messenger 
// @namespace   english
// @description Hide all images - Facebook messenger - make all tiny thumbnails
// @include     http*://*messenger.com*
// @version     1.2
// @run-at document-start
// @grant       GM_addStyle
// ==/UserScript==



var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '          img, body img, html img, body div img{width:15px !important;height:auto !important;} div{background-size: 15px !important;}            ';
document.getElementsByTagName('head')[0].appendChild(style);

var replace_str = $('body').html().replace(/([\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2694-\u2697]|\uD83E[\uDD10-\uDD5D])/g, '')
$('body').html(replace_str);