0.1.2 • Published 5 months ago
@probolabs/probo-browser v0.1.2
@probolabs/probo-browser
A command-line tool for launching browsers with Probo extensions pre-installed.
Installation
npm install -g @probolabs/probo-browserOr run directly with npx:
npx @probolabs/probo-browserUsage
Launch a browser
probo-browser launchLaunch a browser and navigate to a URL
probo-browser launch --url https://example.comProgrammatic 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