TweetThis
Tweets the current URL
O que é TweetThis?
TweetThis é uma extensão do Chrome desenvolvida por Jarryd Lee, e sua principal característica é "Tweets the current URL".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TweetThis
Baixe arquivos de extensão TweetThis 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
Allows for an easy one click method to tweet your current URL by clicking the tweet this button up the top right of the browser.
Informações Básicas da Extensão
Nome | |
ID | dfeipfeeiojbkadlgokhllookmopmdhi |
URL Oficial | https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi |
Descrição | Tweets the current URL |
Tamanho do Arquivo | 81.59 KB |
Contagem de Instalações | 47 |
Versão Atual | 2.1 |
Última Atualização | 2014-02-13 |
Data de Publicação | 2014-02-13 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Jarryd Lee |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TweetThis", "short_name": "TweetThis", "author": "Jarryd Lee", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "description": "Tweets the current URL", "version": "2.1", "background": { "scripts": [ "jquery.js", "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": "icon16.png", "permissions": [ "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/api.bit.ly\/*" ] }, "web_accessible_resources": [ "jquery-1.10.1.min.map" ], "manifest_version": 2 } |