elm-break-dom
elm-break-dom copied to clipboard
StayFocusd
This one https://chrome.google.com/webstore/detail/stayfocusd/laankejkbhbdhmipfmgcngdelahlfoji?hl=en breaks Browser.application even with the sed hack. It adds elements to the beginning of the inner and outer body elements.
Here is a workaround in CoffeeScript (sorry, I'm in a hurry):
observer = new MutationObserver () =>
# StayFocusd
document
.querySelector '#StayFocusd-infobar'
?.remove()
observer.observe document.body,
childList: true
subtree: true