Skip to main content
PATCH
/
browser
/
chrome_extensions
/
many
Update chrome extensions for multiple profiles
curl --request PATCH \
  --url https://api.gologin.com/browser/chrome_extensions/many \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "profileIds": [
    "6200f55e7685342e170dc531"
  ],
  "chromeExtensionIds": [
    "nkbihfbeogaeaoehlefnkodbefgpgknn"
  ],
  "customExtensionIds": [
    "nkbihfbeogaeaoehlefnkodbefgpgknn"
  ],
  "extensionsToRemove": [
    "nkbihfbeogaeaoehlefnkodbefgpgknn"
  ]
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
profileIds
string[]
required

List of profile IDs to update.

Example:
["6200f55e7685342e170dc531"]
chromeExtensionIds
string[]
required

List of chrome extension IDs (oficial ID from chrome store) that you want to add to the profiles.

Example:
["nkbihfbeogaeaoehlefnkodbefgpgknn"]
customExtensionIds
string[]
required

Gologin allows you to add custom chrome extensions (not published in chrome store) to the profiles. If you want to upload your custome extension - you need to upload it in out application. Should be empty if you dont want to add any custom extensions.

Example:
["nkbihfbeogaeaoehlefnkodbefgpgknn"]
extensionsToRemove
string[]
required

List of chrome extension IDs that you want to remove from the profiles.

Example:
["nkbihfbeogaeaoehlefnkodbefgpgknn"]