How to monitor only large paragraphs

Yes, in a similar way, you can monitor other web pages that show posts. For Facebook and Twitter also, you can select the top post and monitor it. However, for these social media pages, the default selector may cease to work after some time as the element’s attribute values change a lot. A custom configuration will work best for them.

For Twitter, you can copy the config as given in the forum post: How to monitor Twitter for user posting a new tweet - #3 by neilbontoft.

For Facebook profiles, the following config should work for monitoring the top-most post:

{
  "selections": [
    {
      "frames": [
        {
          "index": 0,
          "excludes": [],
          "includes": [
            {
              "type": "css",
              "expr": "[data-ad-preview=message]"
            }
          ]
        }
      ],
      "dynamic": true,
      "delay": 5
    }
  ],
  "ignoreEmptyText": true,
  "includeStyle": false,
  "dataAttr": "text"
}
2 Likes