TweetThis

Tweets the current URL

Cos'è TweetThis?

TweetThis è un'estensione di Chrome sviluppata da Jarryd Lee, e la sua funzione principale è "Tweets the current URL".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione TweetThis

Scarica i file di estensione TweetThis in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome TweetThis TweetThis
ID dfeipfeeiojbkadlgokhllookmopmdhi
URL Ufficiale https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi
Descrizione Tweets the current URL
Dimensione del File 81.59 KB
Conteggio Installazioni 47
Versione Corrente 2.1
Ultimo Aggiornamento 2014-02-13
Data di Pubblicazione 2014-02-13
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Jarryd Lee
Tipo di Pagamento free
Lingue Supportate 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
}