NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Add Feedback Button // @namespace https://zalando.de/ // @version 0.1 // @license MIT // @description give feedback to improve the zalando user experience // @author Lina Weichbrodt // @include /^https?://www.zalando\.*/?/ // @grant GM_addStyle // @grant GM_getResourceText // @resource pastebin https://pastebin.com/raw/VG3PDN9G // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // ==/UserScript== (function() { $("body").append(GM_getResourceText("pastebin")); })();