TweetThis

TweetThis

Tweets the current URL

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TweetThis",
  "short_name": "TweetThis",
  "author": "Jarryd Lee",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.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
}