From 412083f4db44ff72ea072daa006a500b47a84658 Mon Sep 17 00:00:00 2001 From: MocA-Love Date: Mon, 30 Mar 2026 02:18:23 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat(desktop):=20=E3=83=96=E3=83=A9?= =?UTF-8?q?=E3=82=A6=E3=82=B6=E3=83=9A=E3=82=A4=E3=83=B3=E3=81=AE=E5=8F=B3?= =?UTF-8?q?=E3=82=AF=E3=83=AA=E3=83=83=E3=82=AF=E3=83=A1=E3=83=8B=E3=83=A5?= =?UTF-8?q?=E3=83=BC=E3=81=AB=E3=80=8CInspect=20Element=E3=80=8D=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit webviewのコンテキストメニューにDevTools検証機能を追加し、 右クリック位置の要素を直接インスペクトできるようにした。 --- apps/desktop/src/main/lib/browser/browser-manager.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/desktop/src/main/lib/browser/browser-manager.ts b/apps/desktop/src/main/lib/browser/browser-manager.ts index 9a15912cec6..00a830103f8 100644 --- a/apps/desktop/src/main/lib/browser/browser-manager.ts +++ b/apps/desktop/src/main/lib/browser/browser-manager.ts @@ -226,6 +226,14 @@ class BrowserManager extends EventEmitter { ); } + menuItems.push( + { type: "separator" }, + { + label: "Inspect Element", + click: () => wc.inspectElement(params.x, params.y), + }, + ); + const menu = Menu.buildFromTemplate(menuItems); menu.popup(); }; From 87010a5be8fe5c255e75f41a84f42acc56f3eec0 Mon Sep 17 00:00:00 2001 From: MocA-Love Date: Mon, 30 Mar 2026 02:20:38 +0900 Subject: [PATCH 2/2] =?UTF-8?q?docs:=20README=20=E3=81=AB=20Inspect=20Elem?= =?UTF-8?q?ent=20=E6=A9=9F=E8=83=BD(PR=20#23)=E3=82=92=E8=BF=BD=E8=A8=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 77218a82083..c1f8fae0c03 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ Works with any CLI agent. Built for local worktree-based development. | **Chrome 拡張機能インストール** | Chrome Web Store の URL または拡張 ID からブラウザ拡張機能をインストール。CRX ダウンロード・展開、互換性チェック(Electron 非対応 API 検出)、設定画面での管理(有効/無効/削除)。BrowserPane ツールバーに拡張アイコンを表示し、クリックでポップアップウィンドウを表示。GPL ライブラリ不使用、Electron 標準 API のみで自前実装 | [#20](https://github.com/MocA-Love/superset/pull/20) | 2026-03-29 | | **Excel diff インラインハイライト** | Excel 差分表示で変更セル内のテキスト差分を文字レベルでインライン表示。追加部分は緑、削除部分は赤+取り消し線。セルからはみ出る場合はホバーでツールチップにフル差分を表示 | [#19](https://github.com/MocA-Love/superset/pull/19) | 2026-03-29 | | **Files タブのツールチップ** | ファイルツリーのファイル/フォルダ名にホバーで相対パスをツールチップ表示。ツールバーのトグルボタンで ON/OFF 切り替え、設定は永続化 | [#22](https://github.com/MocA-Love/superset/pull/22) | 2026-03-29 | +| **Inspect Element(右クリック検証)** | ブラウザペインの右クリックメニューに「Inspect Element」を追加。クリック位置の要素を直接 DevTools でインスペクト可能 | [#23](https://github.com/MocA-Love/superset/pull/23) | 2026-03-30 | ## Fork のビルド方法 (macOS)