awwwyeah

Members
  • Content Count

    45
  • Last visited

Community Reputation

1 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. thanks! hope they still work
  2. thanks! tryna get some shutterstock
  3. thanks! if this isn't calling i wanna try it out edit: requires boxing 3-4 weeks
  4. i'd go with samsung because the compatibility with stuff and more apps etc
  5. whipped up a js script auto reload for amazon gc checking. simple but works. idk if anyone has made posts of these but this is basically a single thread browser checker. run with tampermonkey first contribution with js skIllzZ :hype: [hide] // ==UserScript== // @name New Userscript // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.amazon.com.au/gc/redeem/result // @grant none // ==/UserScript== (function() { function buildGC() { var text = ""; var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; for (var i = 0; i < 14; i++) { text += possible.charAt(Math.floor(Math.random() * possible.length)); } return text; } window.onload = function () { document.getElementById("gc-redemption-input").value = buildGC(); document.getElementById("gc-redemption-apply-button").click(); } })(); [/hide]