How do I get notified when a new thread is posted on a forum page?

Got it. There are two ways to monitor the BladeForums for updates:

  1. They offer an RSS feed of the updates. It can be monitoring using the “Monitor feed” option shown in Disitll’s menu popup as shown in the following screenshot. It is the fastest and easier way to monitor the forum.

  2. Or, by selecting specific parts of the page. This works for any webpage, especially the ones that don’t offer a feed. Here is a quick start guide: Distill.io Chrome Extension - Monitor Website Changes – Distill. Following config should be able to monitor the list:

{
  "selections": [
    {
      "frames": [
        {
          "index": 0,
          "excludes": [],
          "includes": [
            {
              "expr": "[data-xf-init='preview-tooltip']",
              "type": "css"
            },
            {
              "expr": ".label",
              "type": "css"
            }
          ]
        }
      ],
      "dynamic": true,
      "delay": 0
    }
  ],
  "regexp": null,
  "ignoreEmptyText": true,
  "includeStyle": false,
  "viewport": {},
  "dataAttr": "text"
}

To learn more about config, checkout Config and Advanced Options – Distill. I recently showed how to view and edit config here as well: How to get notified of front end changes - not back end changes - #5 by ajitk

Note that the two approaches can alert whenever a new post is added or an existing post is updated.

Try these out and let me know if you need any help. Cheers!