Недавно трекер стал закрытым. Чтобы туда попасть надо отловить появление регистрационного кода на главной страничке и заполнить форму сним.
С вомощью огнелиса, плагина gresiamonkey и jquery есть решение, 2 яваскрипта:
Code
// ==UserScript==
// @name novafilm
// @namespace all
// @include http://novafilm.tv/
// ==/UserScript==
jQuery(document).ready(function()
{
if(jQuery.find('p.codegen') != '')
{
if(jQuery('p.codegen').text() != 'Активных кодов пока нет. Зайдите позже.')
{
window.open('http://novafilm.tv/signup.php?wantcode=' + jQuery('p.codegen').text());
alert( jQuery('p.codegen').text() );
return;
}
else{ window.setTimeout("window.location = window.location",1000); }
}
else{ window.setTimeout("window.location = window.location;",1000); }
});
Code
// ==UserScript==
// @name novafilm.signup
// @namespace all
// @include http://novafilm.tv/signup.php
// ==/UserScript==
jQuery(document).ready(function()
{
jQuery('input[name=wantusername]').val('мой логин');
jQuery('input[name=wantpassword]').val('....');
jQuery('input[name=passagain]').val('....');
jQuery('input[name=email]').val('моя@почта.ru');
jQuery('select[name=country]').val(3);
jQuery('input[name=gender][value=Male]').attr('checked', 'checked');
jQuery('input[name=faqverify]').attr('checked', 'checked');
jQuery('input[name=ageverify]').attr('checked', 'checked');
});