Free Tampermonkey Scripts all day today, #1 UNDEFEATED add to cart bot.


SUBMITTED BY: Guest

DATE: Feb. 7, 2014, 5:21 p.m.

FORMAT: Text only

SIZE: 1.0 kB

HITS: 670

  1. I will be giving away free scripts to 30 websites, one every hour. All scripts are guaranteed to work. All depending upon if people click on my link, so tell your friends!! #1 Undefeated
  2. // ==UserScript==
  3. // @name Undefeated Add to Cart
  4. // @namespace undefeated.com
  5. // @description Automatically selects your desired shoe size and add to cart.
  6. // @include http://undefeated.com/*
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
  8. // ==/UserScript==
  9. function setSelectedIndex(s, v) {
  10. for ( var i = 0; i < s.options.length; i++ ) {
  11. if ( s.options[i].text == v ) {
  12. s.options[i].selected = true;
  13. return;
  14. }
  15. }
  16. }
  17. setSelectedIndex(document.getElementById('color-200'),"11");
  18. function addToCart() { document.getElementById("button-add").click();
  19. }
  20. addToCart();
  21. setTimeout(window.location.href = 'https://undefeated.com/store/checkout/pg',3000);

comments powered by Disqus