Gruszkozgłaszacz

Prawidłowa ikonka dla zgłoszeń

  1. // ==UserScript==
  2. // @run-at document-body
  3. // @name Gruszkozgłaszacz
  4. // @namespace http://wypok.pl/
  5. // @version 0.3
  6. // @description Prawidłowa ikonka dla zgłoszeń
  7. // @author le1t00
  8. // @match http://www.wykop.pl/*
  9. // @require http://code.jquery.com/jquery-latest.js
  10. // @grant none
  11.  
  12. // ==/UserScript==
  13. /* jshint -W097 */
  14. 'use strict';
  15.  
  16. // Your code here...
  17.  
  18. $(function(){
  19. $('.btnNotify i').hide();
  20. $('.btnNotify').prepend('<img src="http://i.imgur.com/YzxTMqW.png" style="width:14px;">');
  21. })