View Other Facebook Photos

View Other Facebook Photos

View facebook photos that aren't readily accessible.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "View Other Facebook Photos",
  "description": "View facebook photos that aren't readily accessible.",
  "version": "1.1",
  "background": {
    "scripts": [
      "popup.js"
    ]
  },
  "icons": {
    "16": "print_16x16.png",
    "48": "print_16x16.png",
    "128": "print_16x16.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Test Extension"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}