Tumblr Show Fullsize Picture

Tumblr Show Fullsize Picture

Tumblr Show Fullsize Picture 1.6: When showing a single tumblr-post you can press F2 and the picture will be loaded in maximum size (1280x). This Add-On does work for JPG and PNG files. It does not work with multiple pictures in one post.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "DirectLoad_tumblr",
  "version": "1.6",
  "description": "When showing a single tumblr-post you can press F2 and the picture will be loaded in maximum size (1280x). Does work for JPG and PNG files. Does not work with multiple pictures in one post.",
  "icons": {
    "48": "icons/border-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.tumblr.com/post/*"
      ],
      "js": [
        "directload.js"
      ]
    },
    {
      "matches": [
        "*://*.tumblr.com/*250.jpg",
        "*://*.tumblr.com/*400.jpg",
        "*://*.tumblr.com/*500.jpg",
        "*://*.tumblr.com/*540.jpg",
        "*://*.tumblr.com/*640.jpg",
        "*://*.tumblr.com/*250.png",
        "*://*.tumblr.com/*400.png",
        "*://*.tumblr.com/*500.png",
        "*://*.tumblr.com/*540.png",
        "*://*.tumblr.com/*640.png"
      ],
      "js": [
        "urlmodify.js"
      ]
    }
  ]
}