Groups Pro

Groups Pro

Automatically add facebook group members to your autoresponder when they are approved

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/sentry.min.js",
      "js/backgroundHelpers.js",
      "js/backgroundScraperManager.js",
      "js/backgroundMessenger.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_title": "Groups Pro"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "js/jquery.min.js",
        "js/sentry.min.js"
      ],
      "matches": [
        "*://*.facebook.com/*"
      ]
    },
    {
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "js/script.js"
      ],
      "matches": [
        "*://*.facebook.com/*"
      ],
      "exclude_matches": [
        "*://mbasic.facebook.com/*app=gp*"
      ]
    },
    {
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "js/messenger_content_script.js"
      ],
      "matches": [
        "*://mbasic.facebook.com/*app=gp*"
      ]
    }
  ],
  "description": "Automatically add facebook group members to your autoresponder when they are approved",
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "manifest_version": 2,
  "name": "Groups Pro",
  "permissions": [
    "activeTab",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "contextMenus",
    "*://*.facebook.com/*",
    "*://*.groupspro.io/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "externally_connectable": {
    "matches": [
      "*://*.facebook.com/*"
    ]
  },
  "version": "2.10.1"
}