Search User Tweets
Adds a new search box so you can easily search tweets from that user's timeline.
Cos'è Search User Tweets?
Search User Tweets è un'estensione di Chrome sviluppata da jmwhittaker, e la sua funzione principale è "Adds a new search box so you can easily search tweets from that user's timeline.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Search User Tweets
Scarica i file di estensione Search User Tweets in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 :) Informazioni di Base sull'Estensione
| Nome | |
| ID | ijnjbefcmdhoghgihgpiogpkhgmncdhh |
| URL Ufficiale | https://chromewebstore.google.com/detail/search-user-tweets/ijnjbefcmdhoghgihgpiogpkhgmncdhh |
| Descrizione | Adds a new search box so you can easily search tweets from that user's timeline. |
| Dimensione del File | 12.93 KB |
| Conteggio Installazioni | 21 |
| Versione Corrente | 0.1 |
| Ultimo Aggiornamento | 2015-09-17 |
| Data di Pubblicazione | 2015-09-17 |
| Valutazione | 1.00/5 Totale 1 Valutazioni |
| Sviluppatore | jmwhittaker |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
}
} | |