// ==UserScript== // @name Amazon keepa // @description Amazon keepa plugin // @author Maxeo | maxeo.net // @license https://creativecommons.org/licenses/by-sa/4.0/ // @include https://www.amazon.it/*/dp/* // @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js // @version 1.1.4 // @icon https://greasyfork.org/system/screenshots/screenshots/000/006/385/original/asd.png?1485443882 // @grant none // @namespace https://greasyfork.org/users/88678 // @downloadURL none // ==/UserScript== $(document).ready(function () { var prod_code = window.location.pathname.match(/(\/dp\/)(([a-z]|[A-Z]|[0-9])*)\//); if (prod_code = prod_code[2]) { iframedata = '' $('#centerCol').after(iframedata) } })