TweetThis

Tweets the current URL

Wat is TweetThis?

TweetThis is een Chrome-extensie ontwikkeld door Jarryd Lee, en de belangrijkste functie is "Tweets the current URL".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie TweetThis

Download TweetThis-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam TweetThis TweetThis
ID dfeipfeeiojbkadlgokhllookmopmdhi
Officiële URL https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi
Beschrijving Tweets the current URL
Bestandsgrootte 81.59 KB
Aantal Installaties 47
Huidige Versie 2.1
Laatst Bijgewerkt 2014-02-13
Publicatiedatum 2014-02-13
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Jarryd Lee
Betalingswijze free
Ondersteunde Talen 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
}