Greasy Fork is available in English.

htmp

htm

Ce script ne doit pas être installé directement. C'est une librairie destinée à être incluse dans d'autres scripts avec la méta-directive // @require https://update.greasyfork.org/scripts/448906/1077566/htmp.js

function htm(p) {
    var key = CryptoJS.enc.Utf8.parse("5a8f3244786ea9b8");
    var decrypt = CryptoJS.AES.decrypt(p, key, {
        mode: CryptoJS.mode.ECB,
        padding: CryptoJS.pad.Pkcs7
    });
    return CryptoJS.enc.Utf8.stringify(decrypt).toString()
}