Anchor allows you to upload and use Chrome extensions in your browser sessions. This lets you add ad blockers, privacy tools, or any other extension to enhance your browsing automation. For uploading, listing, and managing extensions, see the interactive API documentation.Documentation Index
Fetch the complete documentation index at: https://docs.anchorbrowser.io/llms.txt
Use this file to discover all available pages before exploring further.
Getting Extensions from Chrome Web Store
To use extensions from the Chrome Web Store, you’ll need to download and inspect their files:Download Extension Files
- Install CRX Extractor/Downloader - Add this extension to your browser to download .zip files
- Navigate to the extension you want on the Chrome Web Store
- Click the CRX Extractor icon and download the .zip file
- Extract the ZIP to inspect the contents
Inspect Extension Contents
Once extracted, you’ll see the extension’s files:manifest.json- Contains extension metadata and permissionsbackground.jsorservice_worker.js- Background scriptscontent_scripts/- Scripts that run on web pagespopup.html- Extension popup interfaceicons/- Extension icons
Repackage for Upload
After inspecting (and optionally modifying) the files:- Select all files and folders in the extracted directory
- Create a new ZIP file containing all the extension files
- Upload this ZIP to AnchorBrowser using the SDK
Extension Requirements
Your extension ZIP file must contain a validmanifest.json with basic extension information like name and version.
Example Manifest
Code Example
Limitations
- Maximum extension size: 50MB per ZIP file
- Extensions must be valid Chrome extensions

