Search User Tweets
Adds a new search box so you can easily search tweets from that user's timeline.
Search User Tweetsとは何ですか?
Search User Tweetsはjmwhittakerによって開発されたChromeの拡張機能で、その主な機能は「Adds a new search box so you can easily search tweets from that user's timeline.」です。
拡張機能のスクリーンショット
Search User Tweets拡張機能のCRXファイルをダウンロード
Search User Tweets拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 :)
拡張機能の基本情報
名前 | Search User Tweets |
ID | ijnjbefcmdhoghgihgpiogpkhgmncdhh |
公式URL | https://chromewebstore.google.com/detail/search-user-tweets/ijnjbefcmdhoghgihgpiogpkhgmncdhh |
説明 | Adds a new search box so you can easily search tweets from that user's timeline. |
ファイルサイズ | 12.93 KB |
インストール数 | 21 |
現在のバージョン | 0.1 |
最終更新日 | 2015-09-17 |
公開日 | 2015-09-17 |
評価 | 1.00/5 合計 1 レビュー |
開発者 | jmwhittaker |
支払い方法 | free |
対応言語 | 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" ] } } |