WebThumbnailExtension Web Content High CPU/Memory Usage

Hello guys. I have 2021 M1 Pro MacBook Pro, with MacOS Sequoia installed. But every time I open the device, it gets hot, the fans are activating and it kinda sluggish. Turns out that there is something in the Activity monitor that's using significant CPU/Mem usage, 'WebThumbnailExtension Web Content'.


Every time I force quit the task, it keeps on coming back. Can everyone have this particular issue that has been fixed? Replies are super important. I'll attach some screenshots for reference.

MacBook Pro 14″, macOS 15.0

Posted on Oct 6, 2024 8:05 PM

Reply
Question marked as ⚠️ Top-ranking reply

Posted on Jan 13, 2025 3:52 PM

I've been running into this issue. Initially, I thought it was because my MBP M3 Max was connected to the Microsoft Redmond domain and that Intune MDM policies were buggy. I'm not sure QuickLook is the culprit (rather, I'm looking at you Excel and PowerPoint, or Teams 😏). Anyway, for awhile, whenever my CPU starts hitting 100% and computer starts becoming sluggish, I was using Activity Monitor to force quit all those pesky WebThumbnailExtension Web Content instances.


You can also use Automator to make an "app" that will programmatically kill those instances on demand. Here's the Run Shell Script I use:


#!/bin/bash

# Search for the processes and extract their PIDs
PIDS=$(ps -axo pid,command | grep -i "System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent" | grep -v grep | awk '{print $1}')

# Check if any PIDs were found
if [ -n "$PIDS" ]; then
    echo "Killing the following processes:"
    echo "$PIDS"
    echo "$PIDS" | xargs kill -9
    echo "Processes terminated."
else
    echo "No matching processes found."
fi


Hope this helps!

29 replies
Sort By: 
Question marked as ⚠️ Top-ranking reply

Jan 13, 2025 3:52 PM in response to dwight-kayce-vizcarra

I've been running into this issue. Initially, I thought it was because my MBP M3 Max was connected to the Microsoft Redmond domain and that Intune MDM policies were buggy. I'm not sure QuickLook is the culprit (rather, I'm looking at you Excel and PowerPoint, or Teams 😏). Anyway, for awhile, whenever my CPU starts hitting 100% and computer starts becoming sluggish, I was using Activity Monitor to force quit all those pesky WebThumbnailExtension Web Content instances.


You can also use Automator to make an "app" that will programmatically kill those instances on demand. Here's the Run Shell Script I use:


#!/bin/bash

# Search for the processes and extract their PIDs
PIDS=$(ps -axo pid,command | grep -i "System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent" | grep -v grep | awk '{print $1}')

# Check if any PIDs were found
if [ -n "$PIDS" ]; then
    echo "Killing the following processes:"
    echo "$PIDS"
    echo "$PIDS" | xargs kill -9
    echo "Processes terminated."
else
    echo "No matching processes found."
fi


Hope this helps!

Reply

Nov 14, 2024 12:16 PM in response to dwight-kayce-vizcarra

Just wanted to post that the solution here worked for me -


Looks like Quick Look is the culprit, and I never use it, so this was a pretty painless bandaid until they patch it.


Open System Preferences > Trackpad > Point & Click, and uncheck "Look up & data detectors."


[Edited by Moderator]

Reply

Jan 13, 2025 6:28 PM in response to dwight-kayce-vizcarra

I have a new MacBook Pro M4 and have the same problem with the Web Thumbnail Extension taking nearly 100% CPU. I use Firefox, which triggers the issue, but it also happens with Safari. Opening MS Excel seems to exacerbate the problem.


Please, Apple, research and find this issue.

Reply

Mar 10, 2025 1:58 AM in response to dwight-kayce-vizcarra

Finally, I was able to solve the issue! You may kill running process, but this not solve the cause. Only allows you work for a few more minutes. It was frustratring.


I tried reinstalling/repair OS and did not helped either.


I got all cores under fire by opening Finder or using spotlights randomly. 100% utilization was caused by broken index and spotlight tried to index folder with large files, xml (and AI models in my case)


Only I had to do, was adding the folder to blacklist - prevent indexing.


Sequoia (15.3.1): System Settings -> Spotlight -> Search Privacy (at the bottom).


Add folder you want to exclude and wait for a while.

I started with home folder and gradually was able to isolate one project, that caused the issue. The rest of home folder has been reindexed and spotlight is working as has never before.


Reply

Mar 10, 2025 6:47 AM in response to OdinTheDog

Just checking in to say that the clean MacOS install did not solve the problem.


I don't have any large xml files, so that's not it for me. I do have a large OneDrive folder with over a decade of documents. I keep it local on the mac. Spotlight seems to have indexed it just fine, but I'm wondering if that has something to do with it. I feel like MS/Apple are just never going to do anything about this, not sure what else to do since I'm locked to MS for work.

Reply

Mar 29, 2025 4:21 PM in response to PaulPKT

Interesting. I escalated the issue to Apple Support and eventually spoke with a senior Apple tech who advised that the issue likely to be a bug when upgrading from OSX 14 to OSX 15. They suggested I do a completely clean reinstall which they are yet to guide me through. I am sceptical though, given the extensive comments posted here from people who already done this :-)


I also notice that the memory pressure issues seem to relate to use of Preview and Office when concurrently running. FWIW I did provide a link to this discussion group to the Apple tech, and suggested they look imto this in more detail.

Reply

WebThumbnailExtension Web Content High CPU/Memory Usage

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.