Search User Tweets
Adds a new search box so you can easily search tweets from that user's timeline.
Co to jest Search User Tweets?
Search User Tweets to rozszerzenie Chrome opracowane przez jmwhittaker, a jego główną funkcją jest „Adds a new search box so you can easily search tweets from that user's timeline.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Search User Tweets
Pobierz pliki rozszerzeń Search User Tweets w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 :)
Podstawowe informacje o rozszerzeniu
Nazwa | Search User Tweets |
ID | ijnjbefcmdhoghgihgpiogpkhgmncdhh |
Oficjalny URL | https://chromewebstore.google.com/detail/search-user-tweets/ijnjbefcmdhoghgihgpiogpkhgmncdhh |
Opis | Adds a new search box so you can easily search tweets from that user's timeline. |
Rozmiar pliku | 12.93 KB |
Liczba instalacji | 21 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2015-09-17 |
Data Publikacji | 2015-09-17 |
Ocena | 1.00/5 Łącznie 1 Oceny |
Deweloper | jmwhittaker |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } } |