Search User Tweets
Adds a new search box so you can easily search tweets from that user's timeline.
Wat is Search User Tweets?
Search User Tweets is een Chrome-extensie ontwikkeld door jmwhittaker, en de belangrijkste functie is "Adds a new search box so you can easily search tweets from that user's timeline.".
Extensie Screenshots
Download het CRX-bestand van de extensie Search User Tweets
Download Search User Tweets-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 :)
Basisinformatie over de Extensie
Naam | Search User Tweets |
ID | ijnjbefcmdhoghgihgpiogpkhgmncdhh |
Officiële URL | https://chromewebstore.google.com/detail/search-user-tweets/ijnjbefcmdhoghgihgpiogpkhgmncdhh |
Beschrijving | Adds a new search box so you can easily search tweets from that user's timeline. |
Bestandsgrootte | 12.93 KB |
Aantal Installaties | 21 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2015-09-17 |
Publicatiedatum | 2015-09-17 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | jmwhittaker |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } } |