Skip to main content
GET
/
extensions
/
from_chrome_store
JavaScript
import Kernel from '@onkernel/sdk';

const client = new Kernel({
  apiKey: 'My API Key',
});

const response = await client.extensions.downloadFromChromeStore({ url: 'url' });

console.log(response);

const content = await response.blob();
console.log(content);
This response does not have an example.

Authorizations

Authorization
string
header
required

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

Query Parameters

url
string
required

Chrome Web Store URL for the extension.

os
enum<string>
default:linux

Target operating system for the extension package. Defaults to linux.

Available options:
win,
mac,
linux

Response

Extension ZIP archive

The response is of type file.

I