NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Śmieszne obrazki // @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() { var obrazki = { Kreygasm: '[img]http://i.imgur.com/KZj65yT.png[/img]', BibleThump: '[img]http://i.imgur.com/QVLa243.png[/img]', BabyRage: '[img]http://i.imgur.com/rTPKRuk.png[/img]', DansGame: '[img]http://i.imgur.com/5pe3DyB.png[/img]', Kippa: '[img]http://i.imgur.com/6zmxA05.png[/img]', EleGiggle: '[img]http://i.imgur.com/KebuT5l.png[/img]', '4Head': '[img]http://i.imgur.com/lZFqqmU.png[/img]', KappaPride: '[img]http://i.imgur.com/3JOrRIW.png[/img]', KappaRoss: '[img]http://i.imgur.com/iXc44c2.png[/img]', WutFace: '[img]http://i.imgur.com/jcghj68.png[/img]', NotLikeThis: '[img]http://i.imgur.com/siqPWyy.png[/img]', FailFish: '[img]http://i.imgur.com/pDgmUsL.png[/img]', Murzyn: '[img]http://i.imgur.com/8ohO6lE.png[/img]', Thinking1: '[img]http://i.imgur.com/EAmnZzI.png[/img]', Thinking2: '[img]http://i.imgur.com/126aEy3.png[/img]', LUL: '[img]http://i.imgur.com/pf3KO2Z.png[/img]' }; $('#qr_submit').on('click', function(){ var textarea = $(".cke_source"); textarea.val(textarea.val().replace(/Kreygasm|BibleThump|BabyRage|DansGame|Kippa|EleGiggle|KappaPride|KappaRoss|WutFace|NotLikeThis|FailFish|4Head|Murzyn|Thinking1|Thinking2|LUL/g, function(matched) { return obrazki[matched]; })); }); })();