Search User Tweets
Adds a new search box so you can easily search tweets from that user's timeline.
Hvad er Search User Tweets?
Search User Tweets er en Chrome-udvidelse udviklet af jmwhittaker, og dens hovedfunktion er "Adds a new search box so you can easily search tweets from that user's timeline.".
Udvidelsesskærmbilleder
Download Search User Tweets-udvidelses-CRX-fil
Download Search User Tweets-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
                        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 :)                     Grundlæggende oplysninger om udvidelsen
| Navn |   |  
| ID | ijnjbefcmdhoghgihgpiogpkhgmncdhh | 
| Officiel URL | https://chromewebstore.google.com/detail/search-user-tweets/ijnjbefcmdhoghgihgpiogpkhgmncdhh | 
| Beskrivelse | Adds a new search box so you can easily search tweets from that user's timeline. | 
| Filstørrelse | 12.93 KB | 
| Antal Installationer | 21 | 
| Nuværende Version | 0.1 | 
| Senest Opdateret | 2015-09-17 | 
| Udgivelsesdato | 2015-09-17 | 
| Bedømmelse | 1.00/5 Samlet 1 Bedømmelser | 
| Udvikler | jmwhittaker | 
| Betalingsmetode | free | 
| Understøttede Sprog | 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"
        ]
    }
}  |  |