Advertisement
Guest User

Atmel Registration Remover Userscript

a guest
Sep 20th, 2011
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           Atmel Website Registration Redirecter
  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?*
  6. // ==/UserScript==
  7.  
  8. (function() {
  9.  
  10. window.location.href = window.location.href.replace(/software_download\.asp/, 'software_download_splash\.asp');
  11.  
  12. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement