szdc

Amazon 1-Click Buy Free Apps

Oct 30th, 2014
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Amazon 1-Click Buy Free Apps
  3. // @namespace   https://www.ozbargain.com.au/user/49047
  4. // @description Automatically purchase any free apps you open links to
  5. // @match       *://www.amazon.com/*
  6. // @match       *://www.amazon.com.au/*
  7. // @match       *://www.amazon.co.uk/*
  8. // @require     http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
  9. // @version     1
  10. // @grant       none
  11. // ==/UserScript==
  12.  
  13. $(document).ready(function() {
  14.   var price = $('#actualPriceValue').text().trim();
  15.   if (price === '$0.00' || price === 'FREE')
  16.     $('#mas-buy-button').click();
  17. });
Add Comment
Please, Sign In to add comment