Amazon keepa

Amazon keepa plugin

26.01.2017 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js
// @version     1.1.3
// @icon        https://greasyfork.org/system/screenshots/screenshots/000/006/385/original/asd.png?1485443882
// @grant       none
// @namespace https://greasyfork.org/users/88678
// ==/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 = '<iframe style="width: 100%; height: 500px; border:0 none;" src="https://keepa.com/iframe_addon.html#8-0-' + prod_code + '" scrolling="no" id="' + prod_code + '"></iframe>'
    $('#centerCol').after(iframedata)
  }
})