¿Cómo puedo ver los emoji en Google Chrome en Lion?

1

Esta pregunta es una extensión de la pregunta de Daniel L. y mi propia pregunta . Me actualicé a Lion después de hacer mi pregunta. Me gustaría poder ver emoji en Chrome cuando utilizo Lion. Así que cosas como esta:

pregunta daviesgeek 16.03.2012 - 18:57

1 respuesta

4

Esto no es exactamente lo que estás buscando, pero debería funcionar, lo cual es una ventaja.

Crea un servicio en Automator. El servicio toma sin entrada .

Dos acciones.

Primera acción:

Ejecutar AppleScript Aquí está el guión:

on run {input, parameters}
    tell application "Google Chrome" to activate
    tell application "System Events" to tell application process "Google Chrome" to set myvar to value of text field 1 of tool bar 1 of window 1
    if myvar contains "://" then
        -- do nothing
    else
        set myvar to "http://" & myvar
    end if
    return myvar

end run

Segunda acción:

Sitio web emergente

Asígnele una pulsación de tecla y listo.

    
respondido por el Daniel 16.03.2012 - 19:13

Lea otras preguntas en las etiquetas