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
Only present on the branch for v2.0.0. Can be debugged by adding a mutation observer into the onMessage listener in the content script, and then tracing the ridiculously long call stack. Not a priority but might be worth revisiting. Also possible that this bug is so minor that it's marked wontfix as the hassle to solve doesn't justify the benefit to the end user
chrome.runtime.onMessage.addListener(async(message: MessageToTab)=>{if(message.status==='updated'){constobserver=newMutationObserver((mutations)=>{mutations.forEach((mutation)=>{console.log(mutation);// breakpoint here to view call stack});});observer.observe(document.querySelector('title'),{childList: true});setStyle(document);walk(document);}});
The text was updated successfully, but these errors were encountered:
Only present on the branch for
v2.0.0
. Can be debugged by adding a mutation observer into theonMessage
listener in the content script, and then tracing the ridiculously long call stack. Not a priority but might be worth revisiting. Also possible that this bug is so minor that it's markedwontfix
as the hassle to solve doesn't justify the benefit to the end userThe text was updated successfully, but these errors were encountered: