Search User Tweets

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

What is Search User Tweets?

Search User Tweets is a Chrome extension developed by jmwhittaker, and its main feature is "Adds a new search box so you can easily search tweets from that user's timeline.".

Extension Screenshots

screenshot

Download Search User Tweets Extension CRX File

Download Search User Tweets extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Search User Tweets Search User Tweets
ID ijnjbefcmdhoghgihgpiogpkhgmncdhh
Official URL https://chromewebstore.google.com/detail/search-user-tweets/ijnjbefcmdhoghgihgpiogpkhgmncdhh
Description Adds a new search box so you can easily search tweets from that user's timeline.
File Size 12.93 KB
Installation Count 21
Current Version 0.1
Last Updated 2015-09-17
Publish Date 2015-09-17
Rating 1.00/5 Total 1 Ratings
Developer jmwhittaker
Payment Type free
Supported Languages 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"
        ]
    }
}