1. Open your browser
  2. Enter your desired domain: http://juicestore.com/ or https://us.cdgcdgcdg.com/
  3. Right click on the browser window and select “Inspect” (Ctrl+Shift+I on Windows)
  4. Click on “Console” (at the bottom of the page)
  5. Paste the following code into the console, but DO NOT PRESS ENTER!

const firstName = ‘MyFirstName’;

const lastName = ‘MyLastName’;

const email = ‘myemail@gmail.com”;

const password = ‘MyPassword’;

var data = “form_type=create_customer&utf8=%E2%9C%93&customer%5Bfirst_name%5D=” + firstName + “&customer%5Blast_name%5D=” + lastName + “&customer%5Bemail%5D=” + email + “&customer%5Bpassword%5D=” + password;

jQuery.post(‘/account’, data).done(function (response) {

    var logErrors = jQuery(response).find(‘.errors’).text();

    if (logErrors != ” && logErrors != ‘undefined’) {

        alert(logErrors);

    }

    else {

        alert(‘Account created!’);

    }

}).fail(function () {

    alert(‘Failed to create account! Please try different details or activate a VPN!’);

});


  1. Replace MyFirstName, MyLastName, myemail@gmail.com & MyPassword with your personal info.
  2. Press ENTER
  3. Check your email for the account activation link. Some sites may not require further activation.