Skip to content

Instantly share code, notes, and snippets.

@aljbri
Created January 28, 2024 18:38
Show Gist options
  • Save aljbri/db0b5fac0b3f908095ed2a78ce5ae04b to your computer and use it in GitHub Desktop.
Save aljbri/db0b5fac0b3f908095ed2a78ce5ae04b to your computer and use it in GitHub Desktop.
Analyticsvidhya Bypass Signup Helper
// ==UserScript==
// @name Analyticsvidhya Bypass Signup
// @namespace http://www.analyticsvidhya.com/
// @version 0.0.1
// @description Analyticsvidhya Bypass Signup
// @author You
// @match https://www.analyticsvidhya.com/*
// @icon https://www.analyticsvidhya.com/wp-content/uploads/2015/02/logo_square_v2.jpg
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.addEventListener('load', function() {
console.log('you Killed it using a Cookie');
document.cookie = "avsignup=yes; path=/";
}, false);
})();

Note

This UserScript is for Educational purpose only

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment