@btraut/browser-bridge 0.8.1 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/api.js +6 -2
- package/dist/api.js.map +2 -2
- package/dist/index.js.map +1 -1
- package/extension/dist/background.js +104 -23
- package/extension/dist/background.js.map +2 -2
- package/extension/manifest.json +5 -17
- package/package.json +1 -1
- package/skills/browser-bridge/skill.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ The format is based on "Keep a Changelog", and this project adheres to Semantic
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.9.0] - 2026-02-15
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Extension: restore the dedicated agent tab label by bootstrapping new agent windows with a branded `🌉 Browser Bridge` placeholder page and the extension's toolbar robot favicon instead of an untitled blank tab.
|
|
14
|
+
- CI: format `packages/extension/manifest.json` so `npm run format:check` passes again.
|
|
15
|
+
- Screenshot capture now queues and paces `chrome.tabs.captureVisibleTab` calls in the extension, retries Chrome quota hits with backoff, reports repeated quota failures as `RATE_LIMITED` (retryable), and allows full-page screenshot requests to fall back to CDP capture when extension capture is rate-limited.
|
|
16
|
+
|
|
9
17
|
## [0.8.1] - 2026-02-14
|
|
10
18
|
|
|
11
19
|
### Added
|
package/dist/api.js
CHANGED
|
@@ -1347,6 +1347,8 @@ var errorStatus = (code) => {
|
|
|
1347
1347
|
return 503;
|
|
1348
1348
|
case "TIMEOUT":
|
|
1349
1349
|
return 504;
|
|
1350
|
+
case "RATE_LIMITED":
|
|
1351
|
+
return 429;
|
|
1350
1352
|
default:
|
|
1351
1353
|
return 500;
|
|
1352
1354
|
}
|
|
@@ -3711,10 +3713,11 @@ var InspectService = class {
|
|
|
3711
3713
|
} catch (error) {
|
|
3712
3714
|
if (error instanceof InspectError) {
|
|
3713
3715
|
const code = String(error.code);
|
|
3714
|
-
if (![
|
|
3716
|
+
if (!error.retryable && ![
|
|
3715
3717
|
"NOT_SUPPORTED",
|
|
3716
3718
|
"NOT_IMPLEMENTED",
|
|
3717
|
-
"INSPECT_UNAVAILABLE"
|
|
3719
|
+
"INSPECT_UNAVAILABLE",
|
|
3720
|
+
"RATE_LIMITED"
|
|
3718
3721
|
].includes(code)) {
|
|
3719
3722
|
throw error;
|
|
3720
3723
|
}
|
|
@@ -3862,6 +3865,7 @@ var InspectService = class {
|
|
|
3862
3865
|
"ATTACH_DENIED",
|
|
3863
3866
|
"TAB_NOT_FOUND",
|
|
3864
3867
|
"NOT_SUPPORTED",
|
|
3868
|
+
"RATE_LIMITED",
|
|
3865
3869
|
"TIMEOUT",
|
|
3866
3870
|
"EVALUATION_FAILED",
|
|
3867
3871
|
"ARTIFACT_IO_ERROR",
|