kalpdev.1 / ASIN Counter

// ==UserScript==
// @name     ASIN Counter
// @namespace     kalpsdj
// @author        Shjaisw
// @license       MIT
// @copyright 2019, kalpdev.1
// @version       1.2
// @updateURL     https://openuserjs.org/meta/kalpdev.1/ASIN_Counter.meta.js
// @downloadURL   https://openuserjs.org/install/kalpdev.1/ASIN_Counter.user.js
// @description     Count your ASIN Daily and keep track
// @include  https://*.aka.amazon.com/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @grant         GM_setValue
// @grant         GM_getValue
// ==/UserScript==
// ==UserScript==
// @name     ASIN Counter
// @namespace     kalpsdj
// @author        Shjaisw
// @license       MIT
// @copyright 2019, kalpdev.1
// @version       1.2
// @updateURL     https://openuserjs.org/meta/kalpdev.1/ASIN_Counter.meta.js
// @downloadURL   https://openuserjs.org/install/kalpdev.1/ASIN_Counter.user.js
// @description     Count your ASIN Daily and keep track
// @include  https://*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @grant         GM_setValue
// @grant         GM_getValue
// ==/UserScript==


var button = document.createElement("Button");
button.innerHTML = "ASIN Count ";
          var Button = document.getElementById("submitAndNextButton"),
count = 0;
// donot try to call normal sentry authentication

button.onclick = function () {
  count += 1;
  button.innerHTML = "Count- " + count;
};

button.style = "top:0;right:60;position: relative;color: #0093ff;border: #FF5722;overflow: overlay;background: floralwhite;padding: 4px;font-weight: bold;font-size:large position:fixed; width:150px; height:50px; bottom:40px; top:75%; left:8px; background-color:#0C9; color:#FFF; padding:0;margin:0;border-radius:50px;position:absolute;z-index:10000; text-align:center;margin-top:40px; box-shadow: 3px 3px 5px #999; ;"
document.body.appendChild(button);