You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The given code will still cause a remote code violation when you submit your chrome extension to chrome webstore.
Since after the build is complete the generated minified files will contain URLs with enterprise.js which causes a remote code violation.
It would be great if @RasikaWarade can add this in the doc.
The text was updated successfully, but these errors were encountered:
steve-aldrin
changed the title
Remote Code Violation while uploading to Chrome Webstore, Violation Code : Blue Argon
Remote Code Violation while uploading to Chrome Webstore. Violation Code : Blue Argon
Jan 4, 2025
The given code will still cause a remote code violation when you submit your chrome extension to chrome webstore.
Since after the build is complete the generated minified files will contain URLs with enterprise.js which causes a remote code violation.
More Info: firebase/firebase-js-sdk#7617 (comment)
A temporary fix is to remove the links inside the minified files if you are not using it anywhere else and replace it with "" (empty string)
Search for "Recaptcha" or "enterprise.js";
Open the file, and replace the following strings by an empty string (""):
"https://www.google.com/recaptcha/enterprise.js?render=""
"https://apis.google.com/js/api.js?onload=${a}"
Save your file.
It would be great if @RasikaWarade can add this in the doc.
The text was updated successfully, but these errors were encountered: