ssborbis
ssborbis
Thanks. Fix in the master branch now. I'll post again when the next release is out.
This bug must have reappeared since my last post here. I believe this is now fixed in latest releases.
That might be too specific of a use case for this addon. I'm trying to think of how to make that functionality more broadly useful for other engines. Adding a...
> I quickly tried the popup option but didn't work for me - maybe I've changed a Firefox setting that affects it? It may be a popup blocker issue. Although,...
Try bubbling the event. I can't tell if this works without a test URL, but ... ```javascript document.querySelector('[class="preview-button"]').dispatchEvent(new MouseEvent('click', {bubbles:true})); ```
bubbling all the events seems to work for me ```javascript let input = document.querySelector('[class="magnet-input"]'); input.value = searchTerms; input.dispatchEvent(new Event("input", {bubbles:true})); input.dispatchEvent(new Event("change", {bubbles:true})); document.querySelector('[class="preview-button"]').dispatchEvent(new MouseEvent('click', {bubbles:true})); ``` 
@StrollStars I'm having trouble accessing that site. I'll check again later
Something appears to be changing the colors on the CS logo at the top left. That's weird. I don't have any code that could be doing that. To be honest,...
It appears to be the Force setting in vivaldi's dark setting 
That message you are seeing `no double-click event, trigger immediately` is indicating that you don't have a double-click search action also assigned to the mouse button you are using, and...