-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Metasuites slows down browser #31
Comments
I cannot comment any slowdowns. |
Thanks for the feedback, we'll take it to heart and bust our humps to make some improvements. |
Yes that makes a huge difference and that's how I have got it configured now. However given the extension already knows which sites it should be active on, there's no reason a user should have to configure that manually. Glancing through the build config, it seems like the dev version doesn't. But I was unable to get it to successfully compile on my end. (It was surprising to me to realize just how much different extensions can slow down the entire browser, and I'm on the fastest PC out there - 14900ks with an optane SSD) |
One approach to solving this problem is to conditionally insert styles as needed, with the general idea as follows: export const getStyle = () => {
const style = document.createElement("style")
style.textContent = cssText
return style
} This will require some effort and a significant amount of time, but I will be making efforts in this direction, and I also welcome contributions from other developers in the form of pull requests. |
Shouldn't just changing the manifest.json be enough? The dist versions manifest.json: Vs if we change it to this, the slowdown issues go away: |
I love the extension, but I recently realized just how much it slows my computer down -
Installing Metasuite slows down my browser by around 20%
Testing using - https://browserbench.org/Speedometer3.0
By default it seems to load itself into every webpage, causing the slowdown.
The text was updated successfully, but these errors were encountered: