TweetThis

Tweets the current URL

What is TweetThis?

TweetThis is a Chrome extension developed by Jarryd Lee, and its main feature is "Tweets the current URL".

Extension Screenshots

screenshot

Download TweetThis Extension CRX File

Download TweetThis extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name TweetThis TweetThis
ID dfeipfeeiojbkadlgokhllookmopmdhi
Official URL https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi
Description Tweets the current URL
File Size 81.59 KB
Installation Count 47
Current Version 2.1
Last Updated 2014-02-13
Publish Date 2014-02-13
Rating 5.00/5 Total 1 Ratings
Developer Jarryd Lee
Payment Type free
Supported Languages 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
}