More photos and videos

More photos and videos

This extension adds a 'more photos' and 'more videos' button to the facebook profiles for easy discovery of photos about the person.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "More photos and videos",
  "version": "0.2",
  "description": "This extension adds a 'more photos' and 'more videos' button to the facebook profiles for easy discovery of photos about the person.",
  "page_action": {
    "default_icon": "icon-64x64.png",
    "default_popup": "facebook-action.html",
    "default_title": "More Photos, Videos and Id"
  },
  "content_scripts": [
    {
      "exclude_globs": [
        "http://*.facebook.com/ajax/*",
        "https://*.facebook.com/ajax/*",
        "http://www.facebook.com/ai.php*",
        "https://www.facebook.com/ai.php*",
        "https://www.facebook.com/xti.php*",
        "http://www.facebook.com/xti.php*",
        "http://developers.facebook.com/*",
        "https://developers.facebook.com/*"
      ],
      "include_globs": [
        "http://*.facebook.com/*",
        "https://*.facebook.com/*"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*.facebook.com/*",
        "https://*.facebook.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "copy-icon.png",
    "embed-name.js"
  ]
}