Last Faced

Last Faced

When were your friends on Facebook?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Last Faced",
  "description": "When were your friends on Facebook?",
  "version": "1.14",
  "icons": {
    "19": "images/lastfaced19.png",
    "38": "images/lastfaced48.png",
    "128": "images/lastfaced128.png"
  },
  "permissions": [
    "*://*.facebook.com/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "onpage.js"
      ],
      "matches": [
        "*://*.facebook.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "page_action": {},
  "web_accessible_resources": [
    "images/*.png",
    "updates.json"
  ]
}