Skip to content

Instantly share code, notes, and snippets.

@rbreaves
Forked from marcorichetta/ExtensionsProvider.md
Last active June 4, 2021 14:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbreaves/f43ed0e84c30f4d3f1baa75bede1cf4c to your computer and use it in GitHub Desktop.
Save rbreaves/f43ed0e84c30f4d3f1baa75bede1cf4c to your computer and use it in GitHub Desktop.
Change OpenVSX for MS Marketplace as extensions provider - VSCodium
find /usr/share/ -name "product.json"

# cd into vscodum directory
cd /usr/share/vscodium-bin/resources/app

# macOS
# /Applications/VSCodium.app/Contents/Resources/app/product.json

# Windows 10
# C:\Program Files\VSCodium\resources\app\product.json

nano product.json

# search for "extensionsGallery" and replace it with

"extensionsGallery": {
    "serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
    "cacheUrl": "https://vscode.blob.core.windows.net/gallery/index",
    "itemUrl": "https://marketplace.visualstudio.com/items"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment