NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Zabka
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://torg.pl/*
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
(function() {
'use strict';
// Your code here...
$('body').append("<img id='zabka' src='http://i.imgur.com/3hQAMNI.png'></img>");
$('#zabka').css({"position":"fixed", "float":"right", "bottom":"0", "right":"0"});
})();