// ==UserScript== // @name Uncheck Include McAfee on Adobe downloads // @namespace albionresearch // @description Disable Adobe's default inclusion of optional McAfee software in downloads. // @include http://get.adobe.com/* // @include https://get.adobe.com/* // @version 1.0 // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js // @require https://gist.github.com/raw/2625891/waitForKeyElements.js // @grant GM_addStyle // @downloadURL none // ==/UserScript== // http://stackoverflow.com/questions/11195658/run-greasemonkey-script-on-the-same-page-multiple-times/11197969#11197969 function uncheckOffer(jNode) { if (document.getElementById("offerCheckbox").checked) { document.getElementById("offerCheckbox").click(); // By faking a click() the download size gets recalculated and text gets updated. //alert( "Got it" ); } } waitForKeyElements( "#offerCheckbox", uncheckOffer );