Search On Twitter
Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
什么是Search On Twitter?
Search On Twitter是由http://www.thetravisw.com开发的Chrome扩展程序,该扩展的主要功能是“Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu”。
扩展截图
下载Search On Twitter扩展crx文件
下载Search On Twitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Search On Twitter adds to the Right-Click context menu. If the selected text starts with "@", the option to open Twitter profile will be presented. If the selected does not begin with "@", then the option to search on Twitter will be presented. Source Code - https://github.com/travis-w/Search-On-Twitter
扩展基本信息
名称 | |
ID | dhpmpdpphfgejncefefmdhklfbliefkm |
官方URL | https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm |
简介 | Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu |
文件大小 | 9.53 KB |
安装次数 | 465 |
当前版本 | 1.0 |
更新时间 | 2014-09-28 |
上架时间 | 2014-09-28 |
评分 | 3.71/5 共7次评分 |
开发者 | http://www.thetravisw.com |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Search On Twitter", "description": "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu ", "version": "1.0", "manifest_version": 2, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "contextMenus", "tabs" ], "background": { "scripts": [ "js\/main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentscript.js" ] } ] } |