View email-encrypt-decrypt.phtml
<?php | |
$email = 'software@insanitymeetshh.net'; | |
$emailEncode = quoteJSvalue(encryptEmail($email, '-2')); | |
function quoteJSvalue($value) { | |
return strtr( | |
json_encode((string)$value, JSON_HEX_AMP|JSON_HEX_APOS|JSON_HEX_QUOT|JSON_HEX_TAG), | |
[ | |
'"' => '\'', |
View twitch-chest-auto-click.js
// open a twitch channel with channel points | |
// open chat or popout chat | |
// open inspector (Opera: CTRL + SHIFT + C, Chrome: CTRL + SHIFT + I, Firefox: F12) | |
// open console in tab | |
// copy / paste code + ENTER | |
// only works if you view a live stream. (just open chat is not enough) | |
if (document.querySelector('.community-points-summary').style.backgroundColor === '') { | |
var chestPoints = 0; |