Invite All Friends for Facebook™ in one click

Invite All Friends for Facebook™ in one click

Invite all facebook post likers with one click (works in NEW FB interface)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {},
  "icons": {
    "128": "icons/128.png"
  },
  "default_locale": "en",
  "description": "__MSG_extDes__",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "host_permissions": [
    "*://*.facebook.com/*"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content-script.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "version": "1.0.4"
}