ProductBot FB Auto Messenger

ProductBot FB Auto Messenger

The ProductBot Auto Messenger allows users to message friends on the popular site

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ProductBot FB Auto Messenger",
  "version": "0.2.0",
  "description": "",
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup/index.html"
  },
  "options_page": "options/index.html",
  "icons": {
    "16": "assets/icons/16.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/logo.png",
        "assets/arrow-down.png",
        "rules.json"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "alarms",
    "cookies"
  ],
  "host_permissions": [
    "https://api.productbot.app/*",
    "*://*.facebook.com/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  }
}