diff --git a/README.md b/README.md index 7143c8a..60a2cfd 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Gitpod Browser extension -[![Setup Automated](https://img.shields.io/badge/setup-automated-blue?logo=gitpod)](https://gitpod.io/#https://github.com/gitpod-io/browser-extension) +[![Setup Automated](https://img.shields.io/badge/setup-automated-blue?logo=gitpod)](https://app.gitpod.io/#https://github.com/gitpod-io/browser-extension) -This is the browser extension for Gitpod. It supports Chrome (see [Chrome Web Store](https://chrome.google.com/webstore/detail/dodmmooeoklaejobgleioelladacbeki/)), Firefox (see [Firefox Add-ons](https://addons.mozilla.org/firefox/addon/gitpod/)) and Edge (see [how to install Chrome extensions](https://support.microsoft.com/help/4538971/microsoft-edge-add-or-remove-extensions)), and adds a **Gitpod** button to the configured GitLab, GitHub and Bitbucket installations (defaults to `gitlab.com`, `github.com` and `bitbucket.org`) which immediately creates a Gitpod workspace for the current git context: +This is the browser extension for Gitpod. It supports Chrome (see [Chrome Web Store](https://chrome.google.com/webstore/detail/dodmmooeoklaejobgleioelladacbeki/)), Firefox (see [Firefox Add-ons](https://addons.mozilla.org/firefox/addon/gitpod/)) and Edge (see [how to install Chrome extensions](https://support.microsoft.com/help/4538971/microsoft-edge-add-or-remove-extensions)), and adds a **Gitpod** button to the configured GitLab, GitHub, Bitbucket and Azure DevOps installations (defaults to `gitlab.com`, `github.com`, `bitbucket.org` and `dev.azure.com`) which immediately creates a Gitpod workspace for the current git context: ![Gitpodify](./docs/github-injected.png "Gitpodify") diff --git a/src/constants.ts b/src/constants.ts index 24e418c..b1f6c04 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,3 +1,3 @@ -export const DEFAULT_GITPOD_ENDPOINT = "https://gitpod.io"; +export const DEFAULT_GITPOD_ENDPOINT = "https://app.gitpod.io"; export const ALL_ORIGINS_WILDCARD = "*://*/*"; export const EVENT_CURRENT_URL_CHANGED = "current-url-changed";