Search User Tweets

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

Qu'est-ce que Search User Tweets ?

Search User Tweets est une extension Chrome développée par jmwhittaker, et sa fonction principale est "Adds a new search box so you can easily search tweets from that user's timeline.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Search User Tweets

Téléchargez les fichiers d'extension Search User Tweets au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Search User Tweets Search User Tweets
ID ijnjbefcmdhoghgihgpiogpkhgmncdhh
URL Officiel 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.
Taille du Fichier 12.93 KB
Nombre d'Installations 21
Version Actuelle 0.1
Dernière Mise à Jour 2015-09-17
Date de Publication 2015-09-17
Évaluation 1.00/5 Total 1 Évaluations
Développeur jmwhittaker
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}