-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEAT] Upload the chrome addons to microsoft edge extensions store #15
Comments
Thank you for the suggestion. I just submitted the extension to the store, i will update this post with a link once it is approved. |
another question, how can i config multiple cors allowed origin, the config below does not work: http.cors.enabled: true
http.cors.allow-origin:
- "https://app.elasticvue.com"
- "chrome-extension://hkedbapjpblbodpgbajblpnlpenaebaa"
http.cors.allow-headers: X-Requested-With,Content-Type,Content-Length,Authorization,X-Auth-Token
http.cors.allow-credentials: true it can only works like below: http.cors.enabled: true
http.cors.allow-origin: "https://app.elasticvue.com"
http.cors.allow-headers: X-Requested-With,Content-Type,Content-Length,Authorization,X-Auth-Token
http.cors.allow-credentials: true |
You can use a regex to configure multiple CORS hosts. For example: http.cors.allow-origin: /(https:\/\/app.elasticvue.com)|(chrome-extension:\/\/hkedbapjpblbodpgbajblpnlpenaebaa)/ PS: The Edge extension is still getting validated by microsoft. But if you want you can build the extension yourself:
This will build the zipped extension inside the |
They just approved the extension. https://microsoftedge.microsoft.com/addons/detail/geifniocjfnfilcbeloeidajlfmhdlgo Please let me know if you have any issues with it, i cannot test it right now. |
Description
Upload the chrome addons to microsoft edge extensions store
Additional context
we can not access chrome store in china ,but we can access microsoft store to download edge extension, so please upload this chrome extension to microsoft store or provide the crx file
The text was updated successfully, but these errors were encountered: