Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
window.cache??={};
(async () => {
urls = [...document.querySelectorAll('.div-col li')].flatMap(li => [...li.querySelectorAll('a')].slice(1, -1).map(a => a.href));
for (const url of urls) {
  cache[url] ??= new DOMParser().parseFromString(await (await fetch(url)).text(), 'text/html');
  const len = [...cache[url].querySelectorAll('#mw-content-text p:not([class])')].map(p => p.textContent).join('\n ').split('.').length;
  if (len < 3) console.log(url, len);
}
})();