Friend Getter

Friend Getter

Instantly connect with friends with a single click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Friend Getter",
  "version": "2.0.5",
  "description": "Instantly connect with friends with a single click",
  "short_name": "FG",
  "icons": {
    "16": "assets/icon16X16.png",
    "48": "assets/icon48X48.png",
    "128": "assets/icon128X128.png"
  },
  "browser_action": {
    "default_title": "Friend Getter"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://facebook.com/*"
      ],
      "js": [
        "js/vendor.js",
        "./arrive.js",
        "js/contentScriptBundle.js"
      ],
      "css": [
        "assets/content.inj.css",
        "assets/jquery.toast.min.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://mbasic.facebook.com/*",
        "https://m.facebook.com/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "js/vendor.js",
        "js/iframe.js"
      ]
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "permissions": [
    "tabs",
    "*://*.facebook.com/*",
    "*://facebook.com/*",
    "storage",
    "unlimitedStorage",
    "notifications",
    "webRequest",
    "webRequestBlocking"
  ],
  "manifest_version": 2
}