Twitter image

Twitter image

Get the image on the twitter website with the original size.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "script/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "script/eventListener.js"
      ],
      "matches": [
        "*://twitter.com/*"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_ext_description__",
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_ext_name__",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "permissions": [
    "contextMenus",
    "downloads",
    "storage",
    "*://twitter.com/*",
    "*://twimg.com/*"
  ],
  "version": "0.33"
}