Skip to content

Instantly share code, notes, and snippets.

@y-minomo
y-minomo / index.html
Created May 15, 2026 02:49
Minimal reproduction: MV3 extension content scripts not injected in Electron
<!DOCTYPE html>
<html>
<head><meta charset="UTF-8"><title>Repro</title></head>
<body>
<div id="root"></div>
<script type="module">
import React from "https://esm.sh/react@19";
import ReactDOM from "https://esm.sh/react-dom@19/client";
function App() {
const [count, setCount] = React.useState(0);