JS console
Уважаемый пользователь, сайт развивается и существует только на доходы от рекламы - пожалуйста, отключите блокировщик рекламы.
/* This is code testing tool Features: Auto execution while typing (Or press Ctrl+Enter / Cmd+Enter) Auto save in localStorage Indent code (Select and press Ctrl+I / Cmd+I) Cross-domain fetch (with extension) Try some examples below: */ // simple random int Math.random() * 100 // hex to dec parseInt('FF', 16) // dec to hex (255).toString(16); // fetch post http post request fetch("http://httpbin.org/post", { "headers":{ "User-Agent":"test", }, "body":{ key: "value", }, "method":"POST", }); // base64 encode and dump data=atob('J4mIG8IniOF69ZQxSt9E0gFVyREIiWejbttaIfA1Qob6+8k1H1M3uapLm9EEmJHIDTYaGljXi3CaDBqVZ7PYfSlzTw=='); bin2dump(data) // encrypt to SHA512 CryptoJS.HmacSHA512("Message", "Key").toString(CryptoJS.enc.Base64)
Cross-domain requests are disabled
To enable cross-domain requests:
Install
Tampermonkey plug-in
Install
HTTPTester userscript
Restart
this page