0.1.2 • Published 5 months ago

@probolabs/probo-browser v0.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

@probolabs/probo-browser

A command-line tool for launching browsers with Probo extensions pre-installed.

Installation

npm install -g @probolabs/probo-browser

Or run directly with npx:

npx @probolabs/probo-browser

Usage

Launch a browser

probo-browser launch

Launch a browser and navigate to a URL

probo-browser launch --url https://example.com

Programmatic Usage

You can also use the package programmatically in your Node.js applications:

import { initBrowser, getPage } from "@probolabs/probo-browser";

async function main() {
  const context = await initBrowser();
  const page = getPage();
  await page.goto("https://example.com");
}

main().catch(console.error);

Features

  • Launches a browser with Probo extensions pre-installed
  • Cross-platform support (Windows, macOS, Linux)
  • Simple command-line interface
  • Programmatic API for automation
  • Automatic extension management

License

MIT

0.1.2

5 months ago

0.1.1

5 months ago

0.1.0

5 months ago