f79ff0e3c2
- Treat chrome error page script failures as transient during injection retries. - Return safe fallback values for read-only DOM commands when tabs land on browser error pages. - Improve URL watch handling by checking pending URLs and reporting last seen URL/status on timeout. - Bump package and extension version to 0.9.6 and add regression coverage for error-page behavior.
28 lines
544 B
TOML
28 lines
544 B
TOML
[project]
|
|
name = "browser-cli"
|
|
version = "0.9.6"
|
|
description = "Control your real running browser from the terminal via a browser extension"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"click>=8",
|
|
"cryptography>=48",
|
|
"rich>=13",
|
|
]
|
|
|
|
[project.scripts]
|
|
browser-cli = "browser_cli.cli:main"
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest>=8"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["browser_cli"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
log_level = "INFO"
|