I want to create angular component for icons and store svg icons as row svg strings instead of building regular angular templates. The only one way to apply it to DOM is using innerHtml.
So question is, will it violate some security policies of chrome web store? Can I get rejected extension after this change?
PS: right now I use angular templates for it, and it's fine and working well for extensions and SPA, instead of huge bundle size and slow building. Im looking for some "perfect" solution with reducing bundle size, making build faster and keep all flexibility of in-DOM svgs.
Thanks!