Search On Twitter
Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
What is Search On Twitter?
Search On Twitter is a Chrome extension developed by http://www.thetravisw.com, and its main feature is "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu".
Extension Screenshots
Download Search On Twitter Extension CRX File
Download Search On Twitter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | dhpmpdpphfgejncefefmdhklfbliefkm |
Official URL | https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm |
Description | Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu |
File Size | 9.53 KB |
Installation Count | 465 |
Current Version | 1.0 |
Last Updated | 2014-09-28 |
Publish Date | 2014-09-28 |
Rating | 3.71/5 Total 7 Ratings |
Developer | http://www.thetravisw.com |
Payment Type | free |
Supported Languages | 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" ] } ] } |