Search User Tweets

Adds a new search box so you can easily search tweets from that user's timeline.

¿Qué es Search User Tweets?

Search User Tweets es una extensión de Chrome desarrollada por jmwhittaker, y su función principal es "Adds a new search box so you can easily search tweets from that user's timeline.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Search User Tweets

Descarga archivos de extensión Search User Tweets en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Adds a new search box on a Twitter user page (example: https://twitter.com/jmwhittaker) underneath the follow & message buttons. 

The search will return results from that users timeline only. Hand for finding a tweet by a specific user that you have forgotten, or even seeing tweets on a certain topic or hashtag from a specific user. Even works on your own profile page :)                    

Información Básica de la Extensión

Nombre Search User Tweets Search User Tweets
ID ijnjbefcmdhoghgihgpiogpkhgmncdhh
URL Oficial https://chromewebstore.google.com/detail/search-user-tweets/ijnjbefcmdhoghgihgpiogpkhgmncdhh
Descripción Adds a new search box so you can easily search tweets from that user's timeline.
Tamaño del Archivo 12.93 KB
Cantidad de Instalaciones 21
Versión Actual 0.1
Última Actualización 2015-09-17
Fecha de Publicación 2015-09-17
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador jmwhittaker
Tipo de Pago free
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Search User Tweets",
    "version": "0.1",
    "description": "Adds a new search box so you can easily search tweets from that user's timeline.",
    "author": "James Whittaker",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/**"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}