Skip to content

Commit 4a10943

Browse files
committed
chore(release): v0.4.0
1 parent cd68e6a commit 4a10943

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.0] - 2026-05-06
11+
1012
### Added
1113

1214
- **Network Inspector** (`y` to toggle) — a floating draggable panel that captures every `fetch` and `XMLHttpRequest` call made by the page in real time, without any proxy or DevTools Protocol required. The capture runs entirely in the MAIN world by patching `window.fetch` and `window.XMLHttpRequest`; captured entries travel over `postMessage` to the isolated-world store before being displayed.
@@ -148,3 +150,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
148150
[0.1.0]: https://github.com/rosoam/peekly/releases/tag/v0.1.0
149151
[0.2.0]: https://github.com/rosoam/peekly/releases/tag/v0.2.0
150152
[0.3.0]: https://github.com/rosoam/peekly/releases/tag/v0.3.0
153+
[0.4.0]: https://github.com/rosoam/peekly/releases/tag/v0.4.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "peekly",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "Hold x to inspect any component, DOM element, or CSS. Press y for the Network Inspector — fast, seamless, on any site.",
55
"private": true,
66
"type": "module",

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { crx, defineManifest } from '@crxjs/vite-plugin';
44
const manifest = defineManifest({
55
manifest_version: 3,
66
name: 'Peekly',
7-
version: '0.3.0',
7+
version: '0.4.0',
88
description:
99
'Hold x to inspect any component, DOM element, or CSS. Press y for the Network Inspector — fast, seamless, on any site.',
1010
homepage_url: 'https://github.com/rosoam/peekly',

0 commit comments

Comments
 (0)