Skip Amazon Prime Interstitials

Automatically click "no thanks" when Amazon nags you to join Prime.

  1. // ==UserScript==
  2. // @name Skip Amazon Prime Interstitials
  3. // @namespace club.porcupine.gm_scripts.skip_amazon_prime_interstitials
  4. // @version 1
  5. // @description Automatically click "no thanks" when Amazon nags you to join Prime.
  6. // @author Sam Birch
  7. // @license MIT
  8. // @match https://*.amazon.com/gp/buy/primeinterstitial/*
  9. // @icon https://icons.duckduckgo.com/ip2/amazon.com.ico
  10. // @grant none
  11. // ==/UserScript==
  12. (function(){
  13. 'use strict'
  14.  
  15. document.querySelector('.prime-nothanks-button').click()
  16. })()