Friend Machine

Friend Machine

Send friend requests to your ideal clients on auto-pilot, followed by a customized message when they accept your request.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Friend Machine",
  "version": "1.0.8",
  "description": "Send friend requests to your ideal clients on auto-pilot, followed by a customized message when they accept your request.",
  "short_name": "FM",
  "icons": {
    "16": "images/5fb4dea3a4a7967e5fe8647b-Friend_Machine-1622039649363-small_icon.png",
    "48": "images/5fb4dea3a4a7967e5fe8647b-Friend_Machine-1622039649438-medium_icon.png",
    "128": "images/5fb4dea3a4a7967e5fe8647b-Friend_Machine-1622039649488-large_icon.png"
  },
  "browser_action": {
    "default_title": "Friend Machine"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://facebook.com/*"
      ],
      "js": [
        "js/vendor.js",
        "./arrive.js",
        "js/contentScriptBundle.js",
        "./jquery.bpopup.min.js"
      ],
      "css": [
        "assets/content.inj.css",
        "assets/jquery.toast.min.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "permissions": [
    "*://*.facebook.com/*",
    "*://facebook.com/*",
    "storage",
    "unlimitedStorage",
    "notifications"
  ],
  "web_accessible_resources": [
    "assets/*",
    "images/*",
    "js/*"
  ],
  "manifest_version": 2
}