Open azu opened 3 years ago
https://chromewebstore.google.com/detail/textlint-editor/gfhlfpnpjokocfohicmfbgjneiipfeil
This extension may soon no longer be supported because it doesn't follow best practices for Chrome extensions.
Google Chrome's textlint web extension displays the above warning in the chrome web store. This will disappear with support for Manifest V3.
Manifest V3 restrict eval function
textlint editor use
new Worker(inline code)
. I found that content scripts allow using inline workers.Currently, textlint editor runs the worker in the background because of reuse worker across sites. However, Chrome does not support inline worker in Service worker(background script in V3).
Manifest V3 is not well documented. We may need to wait time.