Greasy Fork is available in English.

IBoys blur remover

Removes blur from iBoys

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         IBoys blur remover
// @version      0.1
// @description  Removes blur from iBoys
// @description:de  Macht unkenntliche profilbilder wieder sichtbar
// @author       You
// @match        https://www.iboys.at/*
// @grant        none
// @license MIT
// @namespace https://greasyfork.org/users/750796
// ==/UserScript==

(function() {
    'use strict';
    $('.blur').removeClass('blur');
})();