Skip to content

Instantly share code, notes, and snippets.

@fotile96
Created July 4, 2022 07:49
Show Gist options
  • Save fotile96/ef591e4c81d9d705d8706fc36b8e390c to your computer and use it in GitHub Desktop.
Save fotile96/ef591e4c81d9d705d8706fc36b8e390c to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name CowTransfer Bypass Email Check
// @version 0.1
// @description CowTransfer Bypass Email Check
// @match https://cowtransfer.com/*
// @require http://jpillora.com/xhook/dist/xhook.js
// ==/UserScript==
xhook.after(function(request, response) {
if(request.url.indexOf('login_email_white_list') != -1) {
response.text = '["gmail.com"]';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment