Search User Tweets

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

O que é Search User Tweets?

Search User Tweets é uma extensão do Chrome desenvolvida por jmwhittaker, e sua principal característica é "Adds a new search box so you can easily search tweets from that user's timeline.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Search User Tweets

Baixe arquivos de extensão Search User Tweets no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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 :)                    

Informações Básicas da Extensão

Nome Search User Tweets Search User Tweets
ID ijnjbefcmdhoghgihgpiogpkhgmncdhh
URL Oficial https://chromewebstore.google.com/detail/search-user-tweets/ijnjbefcmdhoghgihgpiogpkhgmncdhh
Descrição Adds a new search box so you can easily search tweets from that user's timeline.
Tamanho do Arquivo 12.93 KB
Contagem de Instalações 21
Versão Atual 0.1
Última Atualização 2015-09-17
Data de Publicação 2015-09-17
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor jmwhittaker
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}