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" ] } } |