Skip to content

Instantly share code, notes, and snippets.

@matschaffer
Created September 30, 2013 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matschaffer/6759182 to your computer and use it in GitHub Desktop.
Save matschaffer/6759182 to your computer and use it in GitHub Desktop.
Hides all purchasing buttons on Amazon Instant Video pages. Helpful if you have kids watching it who like orange buttons better than green ones.
// ==UserScript==
// @name Hide Amazon Instant Video Purchase
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description Hides all purchasing buttons on Amazon Instant Video pages. Helpful if you have kids watching it who like orange buttons better than green ones.
// @match www.amazon.com/*
// @copyright 2012+, You
// ==/UserScript==
jQuery(function () {
jQuery(".buy-box-content, .avod-button.purchase, .avod-spritebox.avod-one-click-btn").hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment