Capture Tweet

Capture Tweet

Make a screen grab of a tweet. Right click at a tweet and select the "Capture" option.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Capture Tweet",
  "version": "0.0.6",
  "manifest_version": 2,
  "description": "Make a screen grab of a tweet. Right click at a tweet and select the \"Capture\" option.",
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon128.png"
  },
  "permissions": [
    "https://twitter.com/*",
    "contextMenus",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}