G+ Full Size Photo Viewer

G+ Full Size Photo Viewer

Opens Google Plus photos in a new tab with resolution up to 2048px!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "G+ Full Size Photo Viewer",
  "version": "1.3",
  "manifest_version": 2,
  "description": "Opens Google Plus photos in a new tab with resolution up to 2048px!",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "view fullsize photo"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "tabs",
    "https://plus.google.com/*",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://plus.google.com/*"
      ],
      "all_frames": true,
      "js": [
        "jquery-1.7.2.min.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "19": "icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}