You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there are duplicate installations of DevTools (ex. if there is an internal version of DevTools installed alongside the Chrome Web Store extension), we currently produce a stream of errors that renders DevTools unusable. Previously, we tried to fix this here by detecting duplicate DevTools versions and preventing them from erroring. However, because there are some edge cases with code that extends the DevTools hook, we had to revert this change.
Even though we're unable to prevent these errors completely, it would be useful to warn the user that they might have duplicate installations of DevTools. We probably don't want to bother the user with this warning multiple times, so we should only warn the first time we detect the duplicate version.
For this task:
Show a warning dialog if there are duplicate DevTools versions installed. You can use this PR for guidance
Write a value to localStorage once this warning has been shown so that we don't continue to show it if the user chooses to leave the duplicate extension installed.
Clear the localStorage value if the duplicate extension is no longer detected. (This will let us show the dialog if the duplicate is ever accidentally re-installed.)
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment!
Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please create a new issue with up-to-date information. Thank you!
If there are duplicate installations of DevTools (ex. if there is an internal version of DevTools installed alongside the Chrome Web Store extension), we currently produce a stream of errors that renders DevTools unusable. Previously, we tried to fix this here by detecting duplicate DevTools versions and preventing them from erroring. However, because there are some edge cases with code that extends the DevTools hook, we had to revert this change.
Even though we're unable to prevent these errors completely, it would be useful to warn the user that they might have duplicate installations of DevTools. We probably don't want to bother the user with this warning multiple times, so we should only warn the first time we detect the duplicate version.
For this task:
localStorage
once this warning has been shown so that we don't continue to show it if the user chooses to leave the duplicate extension installed.localStorage
value if the duplicate extension is no longer detected. (This will let us show the dialog if the duplicate is ever accidentally re-installed.)The text was updated successfully, but these errors were encountered: