Easy Open full Image

Easy Open full Image

A context menu option to open in a new tab images hosted on googleusercontent/tumblr in full size useful for G+/picasa and tumblr.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Easy Open full Image",
  "version": "3.10",
  "manifest_version": 2,
  "description": "A context menu option to open in a new tab images hosted on googleusercontent/tumblr in full size useful for G+/picasa and tumblr.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.googleusercontent.com/*",
        "https://*.googleusercontent.com/*",
        "http://*.tumblr.com/*",
        "https://*.tumblr.com/*"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "icons": {
    "16": "16icon.png",
    "48": "48icon.png",
    "128": "128icon.png"
  }
}