TweetThis

Tweets the current URL

¿Qué es TweetThis?

TweetThis es una extensión de Chrome desarrollada por Jarryd Lee, y su función principal es "Tweets the current URL".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión TweetThis

Descarga archivos de extensión TweetThis en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre TweetThis TweetThis
ID dfeipfeeiojbkadlgokhllookmopmdhi
URL Oficial https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi
Descripción Tweets the current URL
Tamaño del Archivo 81.59 KB
Cantidad de Instalaciones 47
Versión Actual 2.1
Última Actualización 2014-02-13
Fecha de Publicación 2014-02-13
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Jarryd Lee
Tipo de Pago free
Idiomas Soportados 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
}