sandstrom

Results 466 comments of sandstrom

friendly ping @brianreavis 😄

In case anyone is looking for an alternative to this library, I think [MiniSearch](https://github.com/lucaong/minisearch) is a great alternative.

Another solution would be to move out the CLI (which most people doesn't use), see https://github.com/brianreavis/sifter.js/issues/58

+1 We don't use the binary either If the binary see little use, perhaps just dropping it? Or slimming it down a bit, to use fewer dependencies. Moving it to...

@holic @brianreavis friendly ping! 😄

I'm doing some issue gardening 🌱🌿 🌷 and came upon this issue. Since it's quite old I just wanted to ask if this is still relevant? If it isn't, maybe...

I'm doing some issue gardening 🌱🌿 🌷 and came upon this issue. Since it's quite old I just wanted to ask if this is still relevant? If it isn't, maybe...

Yeah, but I could get the same error using my own CSP tag too. Perhaps switching to this API would help? https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/insertCSS This page has some more details about CSP...

@rwwagner90 Yeah, that works. Though when you do you are also making it harder to understand your own CSP policy and risk introducing code that works in development, but breaks...

I think one solution may be to inline the style on the HTML elements, before inserted. Something like this: ```js let highlightStyles = { display: 'none', pointer-events: 'none', box-sizing: 'border-box',...