We are working on an Open Source Chrome extension: Digital Assistant Client
We've had our Chrome Extension published on the Chrome Web Store for quite some time. Recently, while submitting a new version with only minor enhancements (no major changes or new dependencies), the update was surprisingly rejected with the following violation:
"Including remotely-hosted code in a Manifest V3 item."
This was unexpected. We haven’t added any externally hosted scripts. However, in the violation details, the following URL was mentioned:
Our extension is built using React + TypeScript, and we’ve been using the ReactGA npm package for event tracking with Google Analytics. Importantly, this library is bundled during the build process—we are not loading it remotely at runtime.
This implementation has been part of our extension for a long time and never triggered any issues until now.
Has anyone else encountered this recently?
Why is this suddenly being flagged now as a violation under Manifest V3?
Is using ReactGA (which internally references gtag.js) considered a breach even if it’s bundled?
Any guidance or insights would be greatly appreciated!
Thanks in advance.
--
You received this message because you are subscribed to the Google Groups "Chromium Extensions" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-extens...@chromium.org.
To view this discussion visit https://groups.google.com/a/chromium.org/d/msgid/chromium-extensions/d7295874-9c98-4388-a7be-06e2a49512e4n%40chromium.org.
To view this discussion visit https://groups.google.com/a/chromium.org/d/msgid/chromium-extensions/CAPAuxoAbkfiy%3D-nB-7n_-AfGgWfgqPBA2nmTp9R47LFdMXCHTw%40mail.gmail.com.
Hi Okeowo & Patrick,
Thanks for the quick response. I am not using any Firebase in my project Okeowo.
@Patrick Kettner : You can find our code here