>Hide con F2

>Hide con la tecla F2 de la fila superior.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         >Hide con F2
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  >Hide con la tecla F2 de la fila superior.
// @author       Hhaz
// @match        http*://www.voxed.net/*
// ==/UserScript==

$(document).on('keydown',function(evt) {
    if (evt.keyCode == 113) {
        $('#content').val($('#content').val()+'>Hide'); // Agrega el texto '>Hide'.
        $(function() {
            $("#comText").click(); // Cliquea el botón de Enviar.
			$(".icon-lock").click(); // Cliquea 'ocultar'.
        });
    }
});