Gruszkozgłaszacz

Prawidłowa ikonka dla zgłoszeń

// ==UserScript==
// @run-at document-body
// @name         Gruszkozgłaszacz
// @namespace    http://wypok.pl/
// @version      0.3
// @description  Prawidłowa ikonka dla zgłoszeń
// @author       le1t00
// @match        http://www.wykop.pl/*
// @require http://code.jquery.com/jquery-latest.js
// @grant        none

// ==/UserScript==
/* jshint -W097 */
'use strict';

// Your code here...

$(function(){
$('.btnNotify i').hide();
$('.btnNotify').prepend('<img src="http://i.imgur.com/YzxTMqW.png" style="width:14px;">');
})