this code take link from vcrypt iframe
// ==UserScript==
// @name vcrypt get source
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author mouseweb
// @match https://www.vcrypt.club/open/*
// @grant none
// ==/UserScript==(function() {
'use strict';var source = $('iframe').attr('src');
location.href = source;
// Your code here...
})();