Skip to content
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

Closed
yoke88 opened this issue Mar 6, 2020 · 4 comments
Closed
Assignees
Labels

Comments

@yoke88
Copy link

yoke88 commented Mar 6, 2020

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

@cars10
Copy link
Owner

cars10 commented Mar 6, 2020

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.

@yoke88
Copy link
Author

yoke88 commented Mar 9, 2020

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

@cars10
Copy link
Owner

cars10 commented Mar 9, 2020

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:

  • clone the repo
  • run yarn install
  • run yarn build_browser_extensions

This will build the zipped extension inside the ./artifacts directory, you should be able to import that.

@cars10
Copy link
Owner

cars10 commented Mar 9, 2020

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.

@cars10 cars10 closed this as completed Mar 9, 2020
cars10 added a commit that referenced this issue Jul 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants