View difference between Paste ID: 8RGCFU5s and CQHbWeg2
SHOW: | | - or go back to the newest paste.
1
// ==UserScript==
2-
// @name           Atmel Website Registration Redirecter
2+
// @name           Atmel Website Registration Redirect V3
3
// @namespace      atmel.website.redirect
4
// @description    Removes mandatory registration requirement for the Atmel.com website.
5-
// @include        http://www.atmel.com/forms/software_download.asp?*
5+
// @include        http://www.atmel.com/System/BaseForm.aspx?*
6
// ==/UserScript==
7-
7+
 
8
(function() {
9-
9+
 
10-
window.location.href = window.location.href.replace(/software_download\.asp/, 'software_download_splash\.asp');
10+
	window.location.href = window.location.href.replace(/System\/BaseForm/, 'forms/software-download');
11-
11+
 
12
})();