Search On Twitter
Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
O que é Search On Twitter?
Search On Twitter é uma extensão do Chrome desenvolvida por http://www.thetravisw.com, e sua principal característica é "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Search On Twitter
Baixe arquivos de extensão Search On Twitter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | dhpmpdpphfgejncefefmdhklfbliefkm |
URL Oficial | https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm |
Descrição | Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu |
Tamanho do Arquivo | 9.53 KB |
Contagem de Instalações | 465 |
Versão Atual | 1.0 |
Última Atualização | 2014-09-28 |
Data de Publicação | 2014-09-28 |
Classificação | 3.71/5 Total de 7 Avaliações |
Desenvolvedor | http://www.thetravisw.com |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |