Paso 4: archivo de html
Tenía un viejo guión que permite a los usuarios ver sus mensajes de Twitter o mostrar a los demás. Decidí utilizar ese mismo script para permitir a los usuarios ver mis posts no tan recientes de Twitter.
Hacer el archivo html
1) abierto Dreamweaver o Bloc de notas y copia pegan o escribe el siguiente código:
<! Html DOCTYPE público "-//W3C//DTD XHTML 1.0 Transitional / / EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
< html xmlns = "http://www.w3.org/1999/xhtml" >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset = utf-8 "/ >
< title > Twitinside para Chrome < / title >
< script tipo = "texto/javascript" src = "http://ajax.googleapis.com/
Ajax/libs/jQuery/1.5/jQuery.min.js">< / script >
< script tipo = "aplicación/javascript" >
$("div.contentToChange p.firstparagraph:hidden").slideDown("slow");
$("div.contentToChange p.firstparagraph:visible").slideUp("slow");
< /script >
estilo de < >
cuerpo
{
width: 300px;
font-family: Arial;
fuente-tamaño: 12px;
}
un
{
color: #33ccff;
}
a: hover
{
color: #000000;
texto-decoration: none;
}
H2
{
fuente-estilo: cursiva;
color: #33ccff;
}
< / estilo >
< /HEAD >
< cuerpo >
< a href = "http://www.twitter.com/yourtwitterid " target = "_blank" title = "siga el creater de Twitinside @yourtwitterid " >
< img src="twitinside_128.png" frontera = "0" alt = «Siga el creater de Twitinside @yourtwitterid » / >< /a >
< div estilo = "margen-derecho: 0px" >< div id = "twitter_div" >
Twitter dentro de < h2 > < / h2 >
< ul id = "twitter_update_list" >< /ul >
< un id = "twitter-link" style = "display: block; texto-alinee: derecho;" href = "http://twitter.com/yourtwitterid " >< /a >
< / div >
< script src = "http://twitter.com/javascripts/blogger.js" type = "texto/javascript" >< / script >
< script src = "http://twitter.com/statuses/user_timeline/yourtwitterid .Groovy? callback = twitterCallback2 & amp; count = 5" tipo = "texto/javascript" >< / script >< / div >
< /body >
< / html >
Cambiar yourtwitterid a bien su ID de Twitter y la cuenta =5 el número de entradas que desea mostrar.
Guárdelo como twitter.html (he usado twitter.html ya que se utiliza en manifest.json, si cambiar el nombre del archivo manifest.json nombre del archivo html).
Hay mucho que decir acerca de este script, lo consegui de un lugar y usada aquí. Puede utilizar la secuencia de comandos en este archivo también.