NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Stop AMO Condescension
// @namespace https://openuserjs.org/scripts/ConnorBehan/Stop_AMO_Condescension
// @description Stops mozilla from hiding links to download incompatible addons
// @include http://addons.mozilla.org/*
// @include https://addons.mozilla.org/*
// @version 2
// @grant none
// ==/UserScript==
var i;
var elem
var divs = document.getElementsByTagName("div");
for (i = 0; i < divs.length; i++) {
elem = divs[i];
if (elem.hasAttribute("data-min")) elem.setAttribute("data-min", "1.0");
if (elem.hasAttribute("data-max")) elem.setAttribute("data-max", "99.*");
}