Does no one else on Dashlane have massive memory leak problems? It gets up to over 3gb in memory at times, serious pain in the ass. I love the product too much to bin in, but the memory problem really sucks
Even started running an automated script to kill the process constantly..only way I can see to fix it
Here's the script FWIW
on idle tell application "System Events" set ProcessList to name of every process if "DashlanePluginService" is in ProcessList then set ThePID to unix id of process "DashlanePluginService" do shell script "kill -KILL " & ThePID end if end tell return 10 end idle
Does no one else on Dashlane have massive memory leak problems? It gets up to over 3gb in memory at times, serious pain in the ass. I love the product too much to bin in, but the memory problem really sucks
Even started running an automated script to kill the process constantly..only way I can see to fix it
Here's the script FWIW
on idle tell application "System Events" set ProcessList to name of every process if "DashlanePluginService" is in ProcessList then set ThePID to unix id of process "DashlanePluginService" do shell script "kill -KILL " & ThePID end if end tell return 10 end idle