Show Amazon Price

By KhanKlatt Last update Oct 19, 2007 — Installed 529 times. Daily Installs: 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Show Amazon Price
// @namespace      http://www.khan.org/
// @version        1.3
// @description    Avoids the stupid "click here to see the price" feature at spamazon
// @include        http://*.amazon.com/*
// ==/UserScript==
var m = document.getElementById("mappopdiv_2");
if ( m ) {
  m.style.display="block";
  m.style.visibility="visible";
}