Fast Friends Adder

Fast Friends Adder

Fast Friends Adder helps you to automatically click every "Add Friend" button on the new Facebook website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Fast Friends Adder",
  "version": "0.1.4",
  "description": "Fast Friends Adder helps you to automatically click every \"Add Friend\" button on the new Facebook website.",
  "icons": {
    "64": "icon64.png",
    "128": "icon128.png",
    "256": "icon256.png",
    "512": "icon512.png"
  },
  "author": "Yifan Ai",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "homepage_url": "https://www.yifanai.com/"
}