TaskNet
  • Welcome to TaskNet Documentation
  • 🚀Getting Started
    • Authentication
      • API KEY
      • Environments
      • Fingerprints
    • Private Vs Public
    • QuickStart
  • Node Operators
    • Becoming a Node Operator
  • 📕Features
    • Browser Sessions
      • Automation Script Support
      • Automation with API
      • Real-Time View
      • File Downloads, and Uploads
    • User Fingerprints
      • Proxy
      • Chrome Extensions
  • 📚Guides
    • Running Automation Scripts
    • RealTime View
  • reference
    • Typescript SDK
      • NodeJS/Typescript
    • API Reference
      • Sessions
      • Enviornments
      • Fingerprints
      • Extensions
      • Page
      • Operators
  • What's New
    • Changelog
  • Socials
    • X
    • Github
    • Linkedin
    • Discord
Powered by GitBook
On this page
  1. reference
  2. API Reference

Extensions

Explore the list of extensions supported by TaskerAI. Session initialized with extensions will create browsers preloaded with listed extensions.

PreviousFingerprintsNextPage

Last updated 3 months ago

ListExtensions

get

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
get
GET /{mode}/v1/extensions HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
Accept: */*
200

List of available extensions

{
  "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"
    }
  ]
}

GetExtension

get

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
get
GET /{mode}/v1/extensions/{extensionUUID} HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
Accept: */*
200

Extension details

{
  "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"
}
  • GETListExtensions
  • GETGetExtension