Amazon Delta Cart

"has {in,de}creased by $+-#.# +-#.#%", automatically calculated.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         Amazon Delta Cart
// @namespace    http://tampermonkey.net/
// @version      1.1.0
// @description  "has {in,de}creased by $+-#.# +-#.#%", automatically calculated.
// @author       Steven Bytnar
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
// @include      *://*.amazon.tld/gp/*
// @include      *://*.amazon.tld/*/gp/*
// @include      *://*.amazon.tld/dp/*
// @include      *://*.amazon.tld/*/dp/*
// @include      *://*.amazon.tld/*/dp/*
// @grant        none
// ==/UserScript==
// match         http://*/*

// v1.1.0: switch from .com to .tld.
// x@include      https://*.amazon.tld/*


(function(){
  "use strict";

$(document).ready(function(){

    console.log("Delta Cart activated");
    var listitems = $("#cart-important-message-box .a-color-price");

    var count = 0;
    var price = 0.0;
    $.each(listitems, function(index, value) {
       var val = parseFloat($.text(value).split('$')[1]);
       if (count % 2 == 1) {
           var diff = val - price;
           var diffpct = ((val-price)/price)*100.0;
           var color;
           var plus = '';
           if (diff < 0.0) {
               color = 'RED';
           } else {
               color = 'green';
               plus = '+';
           }
           $(this).parent().parent().css('color', color);
           color = "";
           value.append(' ' + color + 'by $' + plus + (diff).toFixed(2) + ' or ' + plus + (diffpct).toFixed(2) + '%');
       }
        count++;
       price = val;
       //console.log(index + ': ' + $.text(value));
    });


});

})();