Friend Request Automator - For Facebook

Friend Request Automator - For Facebook

Automatically add friends to build your client list on Facebook and start earning some serious $$$ using Friend Request

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Friend Request Automator - For Facebook",
  "description": "Automatically add friends to build your client list on Facebook and start earning some serious $$$ using Friend Request",
  "version": "1.0.0",
  "browser_action": {
    "default_title": "Friender",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "./js/config.js",
        "./js/jquery.min.js",
        "./js/core.js",
        "js/simpleNotify.js",
        "./js/select2.min.js",
        "./js/membersFriender.js",
        "./js/friendsBroadcast.js",
        "./js/friendsPage.js",
        "./js/group.js"
      ],
      "css": [
        "css/simpleNotifyStyle.css",
        "./css/select2.min.css",
        "./css/friendsPage.css",
        "./css/content.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://www.facebook.com/messages/t/*action=sendmessage*",
        "https://www.facebook.com/*action=grabName*"
      ],
      "js": [
        "./js/sendMessage.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://www.facebook.com/*/members*action=friender*"
      ],
      "js": [
        "./js/frienderPage.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://accounts.google.com/o/oauth2/approval/v2?auto=false&response=state%3Dextension_token*"
      ],
      "js": [
        "./js/core.js",
        "./js/oauth.js",
        "./js/oauthContent.js"
      ],
      "css": [
        "./css/content.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "./js/config.js",
      "./js/jquery.min.js",
      "./js/core.js",
      "./js/oauth.js",
      "./js/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "images/*.gif",
    "images/*.svg",
    "images/*.jpg"
  ],
  "permissions": [
    "storage",
    "tabs",
    "clipboardWrite",
    "clipboardRead",
    "https://www.facebook.com/*",
    "https://localhost:44300/*",
    "https://accounts.google.com/*",
    "http://friendrequestautomator.gear.host/*",
    "https://mbasic.facebook.com/friends/*",
    "https://app.friendrequest.me/*"
  ]
}