$( document.body ).trigger( 'init_checkout' );
$( document.body ).trigger( 'payment_method_selected' );
$( document.body ).trigger( 'update_checkout' );
$( document.body ).trigger( 'updated_checkout' );
$( document.body ).trigger( 'checkout_error' );
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Custom height - whatsapp.com | |
// @match https://web.whatsapp.com/ | |
// @grant GM_addStyle | |
// @version 1.0 | |
// @description Quita el scroll en versiones recientes de WhatsApp Web. | |
// @run-at document-end | |
// ==/UserScript== | |
GM_addStyle('.h70RQ.two { min-height: auto !important; }'); |