Uncheck Include McAfee on Adobe downloads

Disable Adobe's default inclusion of optional McAfee software in downloads.

目前為 2015-08-10 提交的版本,檢視 最新版本

// ==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
// ==/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 );

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址