Search User Tweets
Adds a new search box so you can easily search tweets from that user's timeline.
Vad är Search User Tweets?
Search User Tweets är en Chrome-tillägg utvecklad av jmwhittaker, och dess huvudfunktion är "Adds a new search box so you can easily search tweets from that user's timeline.".
Tilläggsskärmbilder
Ladda ner Search User Tweets-förlängningens CRX-fil
Ladda ner Search User Tweets-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Search User Tweets |
ID | ijnjbefcmdhoghgihgpiogpkhgmncdhh |
Officiell webbadress | https://chromewebstore.google.com/detail/search-user-tweets/ijnjbefcmdhoghgihgpiogpkhgmncdhh |
Beskrivning | Adds a new search box so you can easily search tweets from that user's timeline. |
Filstorlek | 12.93 KB |
Antal Installationer | 21 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2015-09-17 |
Publiceringsdatum | 2015-09-17 |
Betyg | 1.00/5 Totalt 1 Betyg |
Utvecklare | jmwhittaker |
Betalningssätt | free |
Stödda Språk | 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" ] } } |