Extensions
Explore the list of extensions supported by TaskerAI. Session initialized with extensions will create browsers preloaded with listed extensions.
Retrieves a list of all available browser extensions that can be added to fingerprints. These extensions can enhance browser functionality for specific use cases.
Authorizations
Path parameters
modestringRequired
Responses
200
List of available extensions
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
get
GET /{mode}/v1/extensions HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
Accept: */*
{
"extensions": [
{
"description": "saves the current page in the MHTML/MHT web archive format",
"extensionUUID": "564dfa00-d601-491c-8521-5fc658d192bf",
"name": "mhtml",
"url": "https://chromewebstore.google.com/detail/save-as-mhtml/ahgakckdonjmnpnegjcamhagackmjpei?hl=en&pli=1"
}
]
}
Retrieves detailed information about a specific browser extension, including its name, description, and installation URL.
Authorizations
Path parameters
modestringRequired
extensionUUIDstringRequiredExample:
564dfa00-d601-491c-8521-5fc658d192bf
Responses
200
Extension details
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
get
GET /{mode}/v1/extensions/{extensionUUID} HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
Accept: */*
{
"description": "saves the current page in the MHTML/MHT web archive format",
"extensionUUID": "564dfa00-d601-491c-8521-5fc658d192bf",
"name": "mhtml",
"url": "https://chromewebstore.google.com/detail/save-as-mhtml/ahgakckdonjmnpnegjcamhagackmjpei?hl=en&pli=1"
}
Last updated