FCrypt

FCrypt

Browser extension for encryption of communications through the facebook private messaging system

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FCrypt",
  "short_name": "FCrypt",
  "description": "Browser extension for encryption of communications through the facebook private messaging system",
  "version": "1.0.1",
  "content_scripts": [
    {
      "matches": [
        "*://www.facebook.com/*"
      ],
      "js": [
        "scripts/jquery-2.2.1.js",
        "scripts/bililiteRange.js",
        "scripts/jquery.sendkeys.js",
        "scripts/remodal.min.js",
        "background.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "styles/*",
    "fonts/*",
    "scripts/*"
  ],
  "author": "Montague Monro <[email protected]>",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "homepage_url": "http://tasemu.github.io/FCrypt/"
}